diff options
author | Aron Griffis <agriffis@gentoo.org> | 2002-10-16 14:09:24 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2002-10-16 14:09:24 +0000 |
commit | dfd8809b4bb7c0e2bd150d48cbc17ca8f48db62e (patch) | |
tree | b9b108db7fc8a34fdd9498f096c2cff74e9a5dd4 /media-sound/sox | |
parent | Stray digest removal. (diff) | |
download | gentoo-2-dfd8809b4bb7c0e2bd150d48cbc17ca8f48db62e.tar.gz gentoo-2-dfd8809b4bb7c0e2bd150d48cbc17ca8f48db62e.tar.bz2 gentoo-2-dfd8809b4bb7c0e2bd150d48cbc17ca8f48db62e.zip |
Fixed sox to compile when Alsa is installed
Diffstat (limited to 'media-sound/sox')
-rw-r--r-- | media-sound/sox/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/sox/files/digest-sox-12.17.3-r2 | 1 | ||||
-rw-r--r-- | media-sound/sox/sox-12.17.3-r2.ebuild | 37 |
3 files changed, 44 insertions, 1 deletions
diff --git a/media-sound/sox/ChangeLog b/media-sound/sox/ChangeLog index ad2e00f28165..a782beda6327 100644 --- a/media-sound/sox/ChangeLog +++ b/media-sound/sox/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/sox # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.5 2002/08/14 09:21:17 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.6 2002/10/16 14:09:24 agriffis Exp $ + +*sox-12.17.3-r2 (16 Oct 2002) + + 16 Oct 2002; Aron Griffis <agriffis@gentoo.org> sox-12.17.3-r2.ebuild : + Fixed to build even when Alsa libraries are present on the system. *sox-12.17.3-r1 (12 Jul 2002) diff --git a/media-sound/sox/files/digest-sox-12.17.3-r2 b/media-sound/sox/files/digest-sox-12.17.3-r2 new file mode 100644 index 000000000000..32e2ece0bd4f --- /dev/null +++ b/media-sound/sox/files/digest-sox-12.17.3-r2 @@ -0,0 +1 @@ +MD5 1b9998387616ce0638c8edd1145f9932 sox-12.17.3.tar.gz 405660 diff --git a/media-sound/sox/sox-12.17.3-r2.ebuild b/media-sound/sox/sox-12.17.3-r2.ebuild new file mode 100644 index 000000000000..12699883dd8d --- /dev/null +++ b/media-sound/sox/sox-12.17.3-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-12.17.3-r2.ebuild,v 1.1 2002/10/16 14:09:24 agriffis Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="The swiss army knife of sound processing programs" +HOMEPAGE="http://sox.sourceforge.net" +SRC_URI="http://download.sourceforge.net/sox/${P}.tar.gz" + +KEYWORDS="x86 ppc" +SLOT="0" +LICENSE="LPGL-2.1" + +DEPEND="virtual/glibc" + +src_compile () { + # Looks like support for alsa09's dsp is broken in sox; + # disabling it for now. Note that even when this is fixed, + # then we should check for USE=alsa and set --without-alsa-dsp + # appropriately. + econf --enable-fast-ulaw --enable-fast-alaw --without-alsa-dsp || die + emake || die +} + +src_install () { + into /usr + dobin sox play soxeffect + doman sox.1 soxexam.1 + dodoc Changelog Copyright README TODO *.txt +} + +pkg_postinst () { + # the rec binary doesnt exist anymore + if([ ! -e /usr/bin/rec ]) then + ln -s /usr/bin/play /usr/bin/rec + fi +} |