diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-05-11 18:43:36 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-05-11 18:43:36 +0000 |
commit | 3dcb6e191a152300295559eb16768c1e97fc00cc (patch) | |
tree | 821d649992bc1947b254e768a2270dba5edccc8c /media-sound | |
parent | new package (diff) | |
download | gentoo-2-3dcb6e191a152300295559eb16768c1e97fc00cc.tar.gz gentoo-2-3dcb6e191a152300295559eb16768c1e97fc00cc.tar.bz2 gentoo-2-3dcb6e191a152300295559eb16768c1e97fc00cc.zip |
- Disabled alsa support, since it looks like sox does not compile with
alsa 0.9.
- Updated to the new version.
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/sox/ChangeLog | 12 | ||||
-rw-r--r-- | media-sound/sox/files/digest-sox-12.17.3 | 1 | ||||
-rw-r--r-- | media-sound/sox/sox-12.17.3.ebuild | 27 |
3 files changed, 32 insertions, 8 deletions
diff --git a/media-sound/sox/ChangeLog b/media-sound/sox/ChangeLog index 53232ec45c92..d3fe17303494 100644 --- a/media-sound/sox/ChangeLog +++ b/media-sound/sox/ChangeLog @@ -1,13 +1,9 @@ # 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.1 2002/02/01 21:53:31 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.2 2002/05/11 18:43:36 agenkin Exp $ -*sox-12.17.1 (1 Feb 2002) +*sox-12.17.3 (1 Feb 2002) - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + 11 May 2002; Arcady Genkin <agenkin@thpoon.com> sox-12.7.3.ebuild : - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. + Updated to version 12.17.3.
\ No newline at end of file diff --git a/media-sound/sox/files/digest-sox-12.17.3 b/media-sound/sox/files/digest-sox-12.17.3 new file mode 100644 index 000000000000..32e2ece0bd4f --- /dev/null +++ b/media-sound/sox/files/digest-sox-12.17.3 @@ -0,0 +1 @@ +MD5 1b9998387616ce0638c8edd1145f9932 sox-12.17.3.tar.gz 405660 diff --git a/media-sound/sox/sox-12.17.3.ebuild b/media-sound/sox/sox-12.17.3.ebuild new file mode 100644 index 000000000000..8e1f5d6c6c5b --- /dev/null +++ b/media-sound/sox/sox-12.17.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-12.17.3.ebuild,v 1.1 2002/05/11 18:43:36 agenkin Exp $ + +DESCRIPTION="The swiss army knife of sound processing programs" +HOMEPAGE="http://sox.sourceforge.net" + +SRC_URI="http://download.sourceforge.net/sox/${P}.tar.gz" +S=${WORKDIR}/${P} + +DEPEND="virtual/glibc" + +src_compile () { + # Looks like support for alsa09's dsp is broken in sox; disabling it for now. + local myconf + ./configure --prefix=/usr --host=${CHOST} \ + --enable-fast-ulaw --enable-fast-alaw $myconf || die + emake || die +} + +src_install () { + into /usr + dobin sox play soxeffect + doman sox.1 soxexam.1 + dodoc Changelog Copyright README TODO *.txt +} |