diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-08-26 09:17:23 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-08-26 09:17:23 +0000 |
commit | 8447144c1eb611ebe6e9bab33e8009ddfaec984c (patch) | |
tree | 862924b7ab3d2e00b7c2b242de2c2429cd7eaaf6 /media-sound | |
parent | New version (diff) | |
download | gentoo-2-8447144c1eb611ebe6e9bab33e8009ddfaec984c.tar.gz gentoo-2-8447144c1eb611ebe6e9bab33e8009ddfaec984c.tar.bz2 gentoo-2-8447144c1eb611ebe6e9bab33e8009ddfaec984c.zip |
Punt unused version.
(Portage version: 2.1.3.6)
Diffstat (limited to 'media-sound')
3 files changed, 0 insertions, 101 deletions
diff --git a/media-sound/soundtracker/files/digest-soundtracker-0.6.7 b/media-sound/soundtracker/files/digest-soundtracker-0.6.7 deleted file mode 100644 index e709e2c8caba..000000000000 --- a/media-sound/soundtracker/files/digest-soundtracker-0.6.7 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 9a5685e0a79fb10066d29baed652d324 soundtracker-0.6.7.tar.gz 875235 -RMD160 6b73d5884f13f39f1f886a88eefc0545e058b806 soundtracker-0.6.7.tar.gz 875235 -SHA256 698ce17bdbb0712ca21d8bd9fca084505d435c5bc23d584eefc29d470931d999 soundtracker-0.6.7.tar.gz 875235 diff --git a/media-sound/soundtracker/files/soundtracker-0.6.7-alsa1.patch b/media-sound/soundtracker/files/soundtracker-0.6.7-alsa1.patch deleted file mode 100644 index fa7fc95cb3c5..000000000000 --- a/media-sound/soundtracker/files/soundtracker-0.6.7-alsa1.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff -Naur soundtracker-0.6.7.orig/app/midi-utils.h soundtracker-0.6.7/app/midi-utils.h ---- soundtracker-0.6.7.orig/app/midi-utils.h 2003-05-17 03:09:49.000000000 -0700 -+++ soundtracker-0.6.7/app/midi-utils.h 2004-02-20 16:43:39.000000000 -0800 -@@ -27,7 +27,13 @@ - #if defined(DRIVER_ALSA_050) - #include <sys/asoundlib.h> - #else -+ -+#include <alsa/version.h> -+#if SND_LIB_MAJOR==1 -+# define ALSA_PCM_OLD_HW_PARAMS_API -+#endif - #include <alsa/asoundlib.h> -+ - #endif - - void midi_print_event(snd_seq_event_t *ev); -diff -Naur soundtracker-0.6.7.orig/app/midi.h soundtracker-0.6.7/app/midi.h ---- soundtracker-0.6.7.orig/app/midi.h 2003-05-17 03:09:30.000000000 -0700 -+++ soundtracker-0.6.7/app/midi.h 2004-02-20 16:44:51.000000000 -0800 -@@ -27,6 +27,10 @@ - #if defined(DRIVER_ALSA_050) - #include <sys/asoundlib.h> - #else -+#include <alsa/version.h> -+#if SND_LIB_MAJOR==1 -+# define ALSA_PCM_OLD_HW_PARAMS_API -+#endif - #include <alsa/asoundlib.h> - #endif - diff --git a/media-sound/soundtracker/soundtracker-0.6.7.ebuild b/media-sound/soundtracker/soundtracker-0.6.7.ebuild deleted file mode 100644 index 328bb4d3890a..000000000000 --- a/media-sound/soundtracker/soundtracker-0.6.7.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/soundtracker/soundtracker-0.6.7.ebuild,v 1.14 2006/11/18 02:12:15 compnerd Exp $ - -IUSE="nls esd oss alsa jack" - -inherit eutils flag-o-matic - -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" - -RDEPEND="sys-libs/zlib - =x11-libs/gtk+-1.2* - >=media-libs/audiofile-0.2.1 - media-libs/libsndfile - alsa? ( media-libs/alsa-lib ) - esd? ( media-sound/esound ) - jack? ( media-sound/jack-audio-connection-kit ) - nls? ( virtual/libintl )" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - dev-util/pkgconfig - app-arch/bzip2 - app-arch/gzip - app-arch/unzip" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc sparc x86" - -src_unpack() { - unpack ${A} - epatch ${FILESDIR}/${P}-alsa1.patch -} - -src_compile() { - replace-flags "-O3" "-O2" - - local myconf - - use oss || myconf="--disable-oss" - use esd || myconf="${myconf} --disable-esd" - use nls || myconf="${myconf} --disable-nls" - use alsa || myconf="${myconf} --disable-alsa" - myconf="${myconf} --disable-gnome" - use x86 || myconf="${myconf} --disable-asm" - - econf ${myconf} || die "configure failed" - emake || die "make failed" -} - -src_install () { - einstall || die "make install failed" - #borks make DESTDIR=${D} install || die "make install failed" - - # strip suid from binary - chmod -s ${D}/usr/bin/soundtracker - - # documentation - dodoc AUTHORS ChangeLog FAQ NEWS README TODO - dodoc doc/*.txt - dohtml -r doc -} |