diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-22 00:48:14 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-22 00:48:14 +0000 |
commit | 7c91dde497bda99dbac3dba85e7d66cfdc350758 (patch) | |
tree | 1d3986d3eef32144576f6dd41cdacd1b3647981b /media-sound/xmp | |
parent | Initial release (diff) | |
download | gentoo-2-7c91dde497bda99dbac3dba85e7d66cfdc350758.tar.gz gentoo-2-7c91dde497bda99dbac3dba85e7d66cfdc350758.tar.bz2 gentoo-2-7c91dde497bda99dbac3dba85e7d66cfdc350758.zip |
repoman'd
Diffstat (limited to 'media-sound/xmp')
-rw-r--r-- | media-sound/xmp/xmp-2.0.5_pre3.ebuild | 56 |
1 files changed, 39 insertions, 17 deletions
diff --git a/media-sound/xmp/xmp-2.0.5_pre3.ebuild b/media-sound/xmp/xmp-2.0.5_pre3.ebuild index 54f899179ef6..6576ee198c94 100644 --- a/media-sound/xmp/xmp-2.0.5_pre3.ebuild +++ b/media-sound/xmp/xmp-2.0.5_pre3.ebuild @@ -1,33 +1,55 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-sound/xmp/xmp-2.0.5_pre3.ebuild,v 1.1 2002/06/17 13:56:30 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/xmp/xmp-2.0.5_pre3.ebuild,v 1.2 2002/07/22 00:48:14 seemant Exp $ S="${WORKDIR}/${PN}-2.0.5-pre3" DESCRIPTION="Extended Module Player" -SRC_URI="http://telia.dl.sourceforge.net/sourceforge/xmp/${PN}-2.0.5pre3.tar.bz2" +SRC_URI="mirror://sourceforge/xmp/${PN}-2.0.5pre3.tar.bz2" HOMEPAGE="http://xmp.sf.net" + +SLOT="0" LICENSE="GPL-2" -DEPEND="virtual/glibc - alsa? ( media-libs/alsa-lib ) - arts? ( kde-base/arts ) - xmms? ( media-sound/xmms ) +KEYWORDS="x86" + +DEPEND="X? ( virtual/x11 ) esd? ( media-sound/esound ) nas? ( media-libs/nas ) - X? ( virtual/x11 ) - " + alsa? ( media-libs/alsa-lib ) + arts? ( kde-base/arts ) + xmms? ( media-sound/xmms )" src_compile() { - local myc + local myconf + + use alsa \ + && myconf="${myconf} --enable-alsa" \ + || myconf="${myconf} --disable-alsa" + + use arts \ + && myconf="${myconf} --enable-arts" \ + || myconf="${myconf} --disable-arts" + + use esd \ + && myconf="${myconf} --enable-esd" \ + || myconf="${myconf} --disable-esd" + + use nas \ + && myconf="${myconf} --enable-nas" \ + || myconf="${myconf} --disable-nas" + + use oss \ + && myconf="${myconf} --enable-oss" \ + || myconf="${myconf} --disable-oss" + + use xmms \ + && myconf="${myconf} --enable-xmms" \ + || myconf="${myconf} --disable-xmms" - use alsa && myc="${myc} --enable-alsa" || myc="${myc} --disable-alsa" - use arts && myc="${myc} --enable-arts" || myc="${myc} --disable-arts" - use esd && myc="${myc} --enable-esd" || myc="${myc} --disable-esd" - use nas && myc="${myc} --enable-nas" || myc="${myc} --disable-nas" - use oss && myc="${myc} --enable-oss" || myc="${myc} --disable-oss" - use xmms && myc="${myc} --enable-xmms" || myc="${myc} --disable-xmms" - use X && myc="${myc} --with-x" || myc="${myc} --with-x" + use X \ + && myconf="${myconf} --with-x" \ + || myconf="${myconf} --with-x" - econf ${myc} || die + econf ${myconf} || die make || die } |