# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils inherit mono MY_P=wired-${PV} DESCRIPTION="Wired aims to be a professional music production and creation software running on the Linux operating system." HOMEPAGE="http://bloodshed.net/wired/?sid=1" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="GPL2" SLOT="0" KEYWORDS="~x86" IUSE="pic" S=${WORKDIR}/${MY_P} C=${WORKDIR}/${PN} DEPEND=">=x11-libs/gtk+-2.0.0 >=x11-libs/wxGTK-2.5.0 =media-libs/portaudio-19 >=media-libs/libsoundtouch-1.2.1" src_compile() { if use pic; then myconf="${myconf} --with-pic" fi cd ${C} econf ${myconf} || die "configure failed" } src_install() { cd ${C} emake DESTDIR=${D} install || die "make install failed!" dodoc AUTHORS ChangeLog README }