diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-18 09:54:42 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-18 09:54:42 +0000 |
commit | 2f78e26b4c25236ae9cd77a2b6f3343caf99cde7 (patch) | |
tree | 10bd1ccd4ba457b0ad53179d751d018af82d04dc /media-video/sampeg3 | |
parent | Committing (Manifest recommit) (diff) | |
download | gentoo-2-2f78e26b4c25236ae9cd77a2b6f3343caf99cde7.tar.gz gentoo-2-2f78e26b4c25236ae9cd77a2b6f3343caf99cde7.tar.bz2 gentoo-2-2f78e26b4c25236ae9cd77a2b6f3343caf99cde7.zip |
bug 44517
Diffstat (limited to 'media-video/sampeg3')
-rw-r--r-- | media-video/sampeg3/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/sampeg3/sampeg3-0.0.3.ebuild | 15 |
2 files changed, 9 insertions, 14 deletions
diff --git a/media-video/sampeg3/ChangeLog b/media-video/sampeg3/ChangeLog index f9d2cb40ac6a..2d4d25ba8c34 100644 --- a/media-video/sampeg3/ChangeLog +++ b/media-video/sampeg3/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/sampeg3 -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/sampeg3/ChangeLog,v 1.2 2003/07/12 21:12:53 aliz Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/sampeg3/ChangeLog,v 1.3 2004/03/18 09:54:42 phosphan Exp $ + + 18 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> sampeg3-0.0.3.ebuild: + IUSE was not really used, setting to "" - removing superfluous or even + forbidden variable settings, see bug #44517 *sampeg3-0.0.3 (27 Jun 2003) diff --git a/media-video/sampeg3/sampeg3-0.0.3.ebuild b/media-video/sampeg3/sampeg3-0.0.3.ebuild index 092ad5e01f45..8e52b4133013 100644 --- a/media-video/sampeg3/sampeg3-0.0.3.ebuild +++ b/media-video/sampeg3/sampeg3-0.0.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/sampeg3/sampeg3-0.0.3.ebuild,v 1.1 2003/06/27 12:43:15 pylon Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/sampeg3/sampeg3-0.0.3.ebuild,v 1.2 2004/03/18 09:54:42 phosphan Exp $ DESCRIPTION="MPEG video encoder targeted for optimum picture quality" HOMEPAGE="http://rachmaninoff.informatik.uni-mannheim.de/sampeg/" @@ -11,7 +11,7 @@ SLOT="1.0" KEYWORDS="~x86 ~ppc" -IUSE="mpeg" +IUSE="" DEPEND="virtual/glibc sys-libs/zlib @@ -19,26 +19,17 @@ DEPEND="virtual/glibc media-libs/libpng media-libs/jpeg x11-base/xfree" -RDEPEND=${DEPEND} - -S=${WORKDIR}/${P} src_compile() { - ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" - emake || die } src_install() { - make DESTDIR=${D} install || die - - dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README TODO - } |