From c818a8b2630486cc060f389a864c8d42d1fdb041 Mon Sep 17 00:00:00 2001 From: Seemant Kulleen Date: Sun, 21 Jul 2002 13:50:35 +0000 Subject: repoman'd --- .../files/digest-soundtracker-0.6.4-r2 | 1 - .../soundtracker/soundtracker-0.6.4-r2.ebuild | 70 ---------------------- media-sound/soundtracker/soundtracker-0.6.6.ebuild | 47 ++++++--------- 3 files changed, 17 insertions(+), 101 deletions(-) delete mode 100644 media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 delete mode 100644 media-sound/soundtracker/soundtracker-0.6.4-r2.ebuild (limited to 'media-sound/soundtracker') diff --git a/media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 b/media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 deleted file mode 100644 index ce28c9ee62f4..000000000000 --- a/media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 9208aca40dae30d17a15b0c5deb22a67 soundtracker-0.6.4.tar.gz 510219 diff --git a/media-sound/soundtracker/soundtracker-0.6.4-r2.ebuild b/media-sound/soundtracker/soundtracker-0.6.4-r2.ebuild deleted file mode 100644 index 6daf1f0fea27..000000000000 --- a/media-sound/soundtracker/soundtracker-0.6.4-r2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# 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/soundtracker/soundtracker-0.6.4-r2.ebuild,v 1.3 2002/07/11 06:30:41 drobbins Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="SoundTracker is a music tracking tool for UNIX/X11 (MOD tracker)" -SRC_URI="http://www.soundtracker.org/dl/v0.6/soundtracker-0.6.4.tar.gz" -HOMEPAGE="http://www.soundtracker.org" - -DEPEND="=x11-libs/gtk+-1.2* - >=media-libs/audiofile-0.2.1 \ - alsa? ( media-libs/alsa-lib ) \ - esd? ( media-sound/esound ) \ - gnome? ( >=gnome-base/gnome-core-1.4.0.4-r1 ) \ - sys-libs/zlib" - -RDEPEND="$DEPEND sys-apps/bzip2 sys-apps/gzip app-arch/unzip" - -src_compile() { - - local myconf - - if [ -z "`use oss`" ] ; then - myconf="--disable-oss" - fi - - if [ -z "`use alsa`" ] ; then - myconf="${myconf} --disable-alsa" - fi - - if [ -z "`use esd`" ] ; then - myconf="${myconf} --disable-esd" - fi - - if [ -z "`use gnome`" ] ; then - myconf="${myconf} --disable-gnome" - fi - - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - - ./configure \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --prefix=/usr \ - --host=${CHOST} \ - ${myconf} || die - - - emake || die - -} - -src_install () { - - make \ - prefix=${D}/usr \ - install || die - - # strip suid from binary - chmod -s ${D}/usr/bin/soundtracker - - # documentation - dodoc AUTHORS COPYING ChangeLog FAQ INSTALL NEWS README TODO - dodoc doc/*.txt - dohtml -r doc - -} - diff --git a/media-sound/soundtracker/soundtracker-0.6.6.ebuild b/media-sound/soundtracker/soundtracker-0.6.6.ebuild index 44f7f9ec3589..4306d1706161 100644 --- a/media-sound/soundtracker/soundtracker-0.6.6.ebuild +++ b/media-sound/soundtracker/soundtracker-0.6.6.ebuild @@ -1,61 +1,49 @@ # 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/soundtracker/soundtracker-0.6.6.ebuild,v 1.2 2002/07/11 06:30:41 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/soundtracker/soundtracker-0.6.6.ebuild,v 1.3 2002/07/21 13:50:33 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="SoundTracker is a music tracking tool for UNIX/X11 (MOD tracker)" SRC_URI="http://www.soundtracker.org/dl/v0.6/${P}.tar.gz" HOMEPAGE="http://www.soundtracker.org" -DEPEND="=x11-libs/gtk+-1.2* +DEPEND="sys-libs/zlib + =x11-libs/gtk+-1.2* >=media-libs/audiofile-0.2.1 alsa? ( media-libs/alsa-lib ) esd? ( media-sound/esound ) - gnome? ( >=gnome-base/gnome-libs-1.4.1.7 ) - sys-libs/zlib" + gnome? ( >=gnome-base/gnome-libs-1.4.1.7 )" + RDEPEND="$DEPEND sys-apps/bzip2 sys-apps/gzip app-arch/unzip" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + src_compile() { local myconf - if [ -z "`use oss`" ] ; then - myconf="--disable-oss" - fi + use oss || myconf="--disable-oss" - if [ -z "`use alsa`" ] ; then - myconf="${myconf} --disable-alsa" - fi + use esd || myconf="${myconf} --disable-esd" - if [ -z "`use esd`" ] ; then - myconf="${myconf} --disable-esd" - fi + use nls || myconf="${myconf} --disable-nls" - if [ -z "`use gnome`" ] ; then - myconf="${myconf} --disable-gnome" - fi + use alsa || myconf="${myconf} --disable-alsa" - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - - ./configure \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --prefix=/usr \ - --host=${CHOST} \ - ${myconf} || die - + use gnome || myconf="${myconf} --disable-gnome" + econf ${myconf} || die emake || die } src_install () { - make \ - prefix=${D}/usr \ + make \ + prefix=${D}/usr \ install || die # strip suid from binary @@ -67,4 +55,3 @@ src_install () { dohtml -r doc } - -- cgit v1.2.3-65-gdbad