diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-07-29 18:01:31 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-07-29 18:01:31 +0000 |
commit | 037caf2d959b61d77ade7137ce27c763c4c285ed (patch) | |
tree | 3b7194d2be0841e31cf844dc007b089f968b0164 /media-sound/sox | |
parent | xfree bug (diff) | |
download | gentoo-2-037caf2d959b61d77ade7137ce27c763c4c285ed.tar.gz gentoo-2-037caf2d959b61d77ade7137ce27c763c4c285ed.tar.bz2 gentoo-2-037caf2d959b61d77ade7137ce27c763c4c285ed.zip |
Removing insecure version.
Diffstat (limited to 'media-sound/sox')
-rw-r--r-- | media-sound/sox/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/sox/files/digest-sox-12.17.4-r1 | 1 | ||||
-rw-r--r-- | media-sound/sox/sox-12.17.4-r1.ebuild | 51 |
3 files changed, 5 insertions, 53 deletions
diff --git a/media-sound/sox/ChangeLog b/media-sound/sox/ChangeLog index d8e24b1b07fa..0df0084bd023 100644 --- a/media-sound/sox/ChangeLog +++ b/media-sound/sox/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/sox # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.25 2004/07/29 09:11:21 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.26 2004/07/29 18:01:31 eradicator Exp $ + + 29 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> + -sox-12.17.4-r1.ebuild: + Removing insecure version. *sox-12.17.4-r2 (29 Jul 2004) diff --git a/media-sound/sox/files/digest-sox-12.17.4-r1 b/media-sound/sox/files/digest-sox-12.17.4-r1 deleted file mode 100644 index 3d925bc031be..000000000000 --- a/media-sound/sox/files/digest-sox-12.17.4-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 39bdb64e06a8c456057e87eff7d0b339 sox-12.17.4.tar.gz 417497 diff --git a/media-sound/sox/sox-12.17.4-r1.ebuild b/media-sound/sox/sox-12.17.4-r1.ebuild deleted file mode 100644 index 4424356c144c..000000000000 --- a/media-sound/sox/sox-12.17.4-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-12.17.4-r1.ebuild,v 1.13 2004/07/07 18:33:17 hardave Exp $ - -inherit gnuconfig - -DESCRIPTION="The swiss army knife of sound processing programs" -HOMEPAGE="http://sox.sourceforge.net" -SRC_URI="mirror://sourceforge/sox/${P}.tar.gz" - -IUSE="alsa oss oggvorbis mad encode" -SLOT="0" -KEYWORDS="x86 ppc sparc amd64 ~mips" -LICENSE="LGPL-2.1" - -DEPEND="virtual/libc - alsa? ( media-libs/alsa-lib ) - oggvorbis? media-libs/libvorbis - mad? media-sound/madplay" - -src_compile () { - - # Needed on mips and probablly others - gnuconfig_update - - # 12.17.4 has mp3 encoding/decoding if you have madlibs and lame - # using alsa by default - local myconf - - use oggvorbis || myconf="${myconf} --disable-ogg-vorbis" - use mad || myconf="${myconf} --disable-mad" - use encode || myconf="${myconf} --disable-lame" - use alsa || myconf="${myconf} --disable-alsa-dsp" - use oss || myconf="${myconf} --disable-oss-dsp" - - econf ${myconf} --enable-fast-ulaw --enable-fast-alaw || die - emake || die -} - -src_install() { - dobin sox play soxeffect soxmix || die - doman sox.1 play.1 soxexam.1 - dodoc Changelog README TODO *.txt -} - -pkg_postinst() { - # the rec binary doesnt exist anymore - if [ ! -e ${ROOT}/usr/bin/rec ] ; then - ln -s /usr/bin/play ${ROOT}/usr/bin/rec - fi -} |