diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-03-27 10:39:47 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-03-27 10:39:47 +0000 |
commit | e6e09b29edc94824e07b6f09414ee960e65dadc3 (patch) | |
tree | 3c21a226ffe1803af3b12232b5bf19afe31a2195 | |
parent | HTML documentation ungzipped (diff) | |
download | gentoo-2-e6e09b29edc94824e07b6f09414ee960e65dadc3.tar.gz gentoo-2-e6e09b29edc94824e07b6f09414ee960e65dadc3.tar.bz2 gentoo-2-e6e09b29edc94824e07b6f09414ee960e65dadc3.zip |
Ungzipped HTML documentation
-rw-r--r-- | media-sound/soundtracker/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 | 1 | ||||
-rw-r--r-- | media-sound/soundtracker/soundtracker-0.6.4-r2.ebuild | 71 |
3 files changed, 79 insertions, 1 deletions
diff --git a/media-sound/soundtracker/ChangeLog b/media-sound/soundtracker/ChangeLog index 56dc2ef70834..5251e77f7f35 100644 --- a/media-sound/soundtracker/ChangeLog +++ b/media-sound/soundtracker/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/soundtracker # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-sound/soundtracker/ChangeLog,v 1.1 2002/02/01 21:53:31 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/soundtracker/ChangeLog,v 1.2 2002/03/27 10:39:47 seemant Exp $ + +*soundtracker-0.6.4-r2 (27 Mar 2002) + + 27 Mar 2002; Seemant Kulleen <seemant@gentoo.org> soundtracker-0.6.4-r2.ebuild : + + Ungzipped HTML documentation. *soundtracker-0.6.4-r1 (1 Feb 2002) diff --git a/media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 b/media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 new file mode 100644 index 000000000000..ce28c9ee62f4 --- /dev/null +++ b/media-sound/soundtracker/files/digest-soundtracker-0.6.4-r2 @@ -0,0 +1 @@ +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 new file mode 100644 index 000000000000..0408ece53ab0 --- /dev/null +++ b/media-sound/soundtracker/soundtracker-0.6.4-r2.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bruce A. Locke <blocke@shivan.org> +# $Header: /var/cvsroot/gentoo-x86/media-sound/soundtracker/soundtracker-0.6.4-r2.ebuild,v 1.1 2002/03/27 10:39:47 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/soundtracker-0.6.4.tar.gz" +HOMEPAGE="http://www.soundtracker.org" + +DEPEND=">=x11-libs/gtk+-1.2.10-r4 + >=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 + +} + |