diff options
author | 2004-02-16 00:21:06 +0000 | |
---|---|---|
committer | 2004-02-16 00:21:06 +0000 | |
commit | fc6270684c03dfa2d7b0a96724bb92391610ac4b (patch) | |
tree | d7f97c0759ad69f87e23f1b5c03b644edffbcd18 | |
parent | Add Manifest (diff) | |
download | gentoo-2-fc6270684c03dfa2d7b0a96724bb92391610ac4b.tar.gz gentoo-2-fc6270684c03dfa2d7b0a96724bb92391610ac4b.tar.bz2 gentoo-2-fc6270684c03dfa2d7b0a96724bb92391610ac4b.zip |
Removing unsecure ebuild.
-rw-r--r-- | media-sound/mpg123/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/mpg123/files/digest-mpg123-0.59s-r1 | 1 | ||||
-rw-r--r-- | media-sound/mpg123/mpg123-0.59s-r1.ebuild | 70 |
3 files changed, 5 insertions, 72 deletions
diff --git a/media-sound/mpg123/ChangeLog b/media-sound/mpg123/ChangeLog index e7cdafa5623f..391de738040b 100644 --- a/media-sound/mpg123/ChangeLog +++ b/media-sound/mpg123/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/mpg123 # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.32 2004/02/15 22:04:19 avenj Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.33 2004/02/16 00:21:05 eradicator Exp $ + + 15 Feb 2004; Jeremy Huddleston <eradicator@gentoo.org> + mpg123-0.59s-r1.ebuild: + Removing unsecure ebuild. 15 Feb 2004; Jon Portnoy <avenj@gentoo.org> mpg123-0.59s-r2.ebuild : Stable on AMD64. diff --git a/media-sound/mpg123/files/digest-mpg123-0.59s-r1 b/media-sound/mpg123/files/digest-mpg123-0.59s-r1 deleted file mode 100644 index 88b7f6bafc5b..000000000000 --- a/media-sound/mpg123/files/digest-mpg123-0.59s-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 a63675b0ea7990d4a7d7e7e14f23a3e4 mpg123-pre0.59s.tar.gz 244899 diff --git a/media-sound/mpg123/mpg123-0.59s-r1.ebuild b/media-sound/mpg123/mpg123-0.59s-r1.ebuild deleted file mode 100644 index d3648bb4e9c7..000000000000 --- a/media-sound/mpg123/mpg123-0.59s-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-0.59s-r1.ebuild,v 1.11 2004/02/15 21:40:34 eradicator Exp $ - -inherit eutils - -S=${WORKDIR}/mpg123 -DESCRIPTION="Real Time mp3 player" -HOMEPAGE="http://www.mpg123.de/" -SRC_URI="http://www.mpg123.de/mpg123/${PN}-pre${PV}.tar.gz" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 ia64 ~amd64 ppc sparc alpha ~hppa ~mips" - -PROVIDE="virtual/mpg123" - -DEPEND="virtual/glibc - >=sys-apps/sed-4" - -src_unpack () { - unpack ${A} && cd ${S} || die "unpack failed" - - # Apply security fix - epatch ${FILESDIR}/${P}-security.diff - - # Add linux-generic target - epatch ${FILESDIR}/${PV}-generic.patch - - # Always apply this patch, even though it's particularly for - # amd64. It's good to understand the distinction between int and - # long: ANSI says that int should be 32-bits, long should be the - # native size of the CPU (usually the same as a pointer). - epatch ${FILESDIR}/mpg123-0.59s-amd64.patch - - # Don't force gcc since icc/ccc might be possible - sed -i -e "s|CC=gcc||" Makefile - - # Fix a glitch in the ppc-related section of the Makefile - sed -i -e "s:-mcpu=ppc::" Makefile -} - -src_compile() { - local style="" - - case $ARCH in - ppc) - style="-ppc";; - x86) - use mmx && style="-mmx" || style="-i486";; - sparc*) - style="-sparc";; - amd64|x86_64) - style="-x86_64";; - alpha) - style="-alpha";; - arm|hppa|ia64) - style="-generic";; - esac - - make linux${style} RPM_OPT_FLAGS="${CFLAGS}" || die -} - -src_install () { - into /usr - dobin mpg123 - doman mpg123.1 - dodoc BENCHMARKING BUGS CHANGES COPYING JUKEBOX README* TODO -} - |