summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Holland <tigger@gentoo.org>2003-07-31 15:29:47 +0000
committerRob Holland <tigger@gentoo.org>2003-07-31 15:29:47 +0000
commit1fac972472febd37c2bad33be0b9f4839557f530 (patch)
treec4225dbc3ba054d188dd717326ff43fd1472df89 /media-sound
parentVersion bump. Fixes alsa issues from 12.17.3. Submitted by Andy Pyles <a_pyle... (diff)
downloadhistorical-1fac972472febd37c2bad33be0b9f4839557f530.tar.gz
historical-1fac972472febd37c2bad33be0b9f4839557f530.tar.bz2
historical-1fac972472febd37c2bad33be0b9f4839557f530.zip
Version bump. Fixes alsa issues from 12.17.3. Submitted by Andy Pyles <a_pyles@yahoo.com>. Closes #19021
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/sox/Manifest4
-rw-r--r--media-sound/sox/files/digest-sox-12.17.41
-rw-r--r--media-sound/sox/sox-12.17.4.ebuild35
3 files changed, 38 insertions, 2 deletions
diff --git a/media-sound/sox/Manifest b/media-sound/sox/Manifest
index f29b90be9d11..28945d0aa38c 100644
--- a/media-sound/sox/Manifest
+++ b/media-sound/sox/Manifest
@@ -1,7 +1,7 @@
MD5 377ea4576b0624834e983e251f1eaac2 sox-12.17.3-r1.ebuild 906
MD5 7057a908d81b99e9e34ceb76ed8da708 sox-12.17.3-r3.ebuild 1071
-MD5 2cfb69c4c577cbc67f425f33b627d3a9 sox-12.17.4.ebuild 942
-MD5 fee25b54afc5cf5ded85d60a69360f46 ChangeLog 955
+MD5 7ab33e750f9913eaa85a3012619901d1 sox-12.17.4.ebuild 941
+MD5 480fba13928c18afb085ef72ff42612e ChangeLog 1160
MD5 64aef0b430e70836aae794f8e91ea8dc files/digest-sox-12.17.4 63
MD5 a27f4560530e1dcd5ee4ff1bc4a6f921 files/digest-sox-12.17.3-r1 63
MD5 a27f4560530e1dcd5ee4ff1bc4a6f921 files/digest-sox-12.17.3-r3 63
diff --git a/media-sound/sox/files/digest-sox-12.17.4 b/media-sound/sox/files/digest-sox-12.17.4
new file mode 100644
index 000000000000..3d925bc031be
--- /dev/null
+++ b/media-sound/sox/files/digest-sox-12.17.4
@@ -0,0 +1 @@
+MD5 39bdb64e06a8c456057e87eff7d0b339 sox-12.17.4.tar.gz 417497
diff --git a/media-sound/sox/sox-12.17.4.ebuild b/media-sound/sox/sox-12.17.4.ebuild
new file mode 100644
index 000000000000..afc7b1803c63
--- /dev/null
+++ b/media-sound/sox/sox-12.17.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2003 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.4.ebuild,v 1.1 2003/07/31 15:29:37 tigger 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 ~alpha ~sparc "
+SLOT="0"
+LICENSE="LGPL-2.1"
+
+DEPEND="virtual/glibc"
+
+src_compile () {
+ # 12.17.4 has mp3 encoding/decoding if you have madlibs and lame
+ # using alsa by default
+ econf --enable-fast-ulaw --enable-fast-alaw || die
+ emake || die
+}
+
+src_install () {
+ into /usr
+ dobin sox play soxeffect soxmix
+ doman sox.1 play.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
+}