diff options
author | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2005-06-23 10:59:25 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2005-06-23 10:59:25 +0000 |
commit | 2ea78a9dcdfdcf7af3d063f2e6ccd9fb685b484a (patch) | |
tree | c221f0baddc0cb63c5642c106b2da5d484a70d5b | |
parent | fix stupid upstream configure, enable-encode disables encoder. Thanks bilboe... (diff) | |
download | gentoo-2-2ea78a9dcdfdcf7af3d063f2e6ccd9fb685b484a.tar.gz gentoo-2-2ea78a9dcdfdcf7af3d063f2e6ccd9fb685b484a.tar.bz2 gentoo-2-2ea78a9dcdfdcf7af3d063f2e6ccd9fb685b484a.zip |
alpha4.ebuild has a broken encoder
(Portage version: 2.0.51.19)
-rw-r--r-- | media-libs/libtheora/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/libtheora/files/digest-libtheora-1.0_alpha4 | 1 | ||||
-rw-r--r-- | media-libs/libtheora/libtheora-1.0_alpha4.ebuild | 48 |
3 files changed, 5 insertions, 50 deletions
diff --git a/media-libs/libtheora/ChangeLog b/media-libs/libtheora/ChangeLog index d425dfa7cbf5..db3ff63d5365 100644 --- a/media-libs/libtheora/ChangeLog +++ b/media-libs/libtheora/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libtheora # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.33 2005/06/23 10:52:35 zaheerm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.34 2005/06/23 10:59:25 zaheerm Exp $ + + 23 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org> + -libtheora-1.0_alpha4.ebuild: + alpha4.ebuild has a broken encoder *libtheora-1.0_alpha4-r1 (23 Jun 2005) diff --git a/media-libs/libtheora/files/digest-libtheora-1.0_alpha4 b/media-libs/libtheora/files/digest-libtheora-1.0_alpha4 deleted file mode 100644 index c6071d3bcdce..000000000000 --- a/media-libs/libtheora/files/digest-libtheora-1.0_alpha4 +++ /dev/null @@ -1 +0,0 @@ -MD5 a71ac42ec0f848da327930841a80ff2b libtheora-1.0alpha4.tar.bz2 1755132 diff --git a/media-libs/libtheora/libtheora-1.0_alpha4.ebuild b/media-libs/libtheora/libtheora-1.0_alpha4.ebuild deleted file mode 100644 index e433366e4e3c..000000000000 --- a/media-libs/libtheora/libtheora-1.0_alpha4.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_alpha4.ebuild,v 1.14 2005/06/17 20:30:13 hansmi Exp $ -inherit flag-o-matic - -DESCRIPTION="The Theora Video Compression Codec" -HOMEPAGE="http://www.theora.org/" -SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2" - -LICENSE="xiph" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc-macos ppc64 sparc x86" -IUSE="encode doc" - -RDEPEND=">=media-libs/libogg-1.1.0 - >=media-libs/libvorbis-1.0.1" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -S=${WORKDIR}/${P/_} - -src_unpack() { - unpack ${A} - cd ${S} - sed -i -e 's:SUBDIRS = .*:SUBDIRS = lib include doc:' Makefile.in -} - -src_compile() { - # bug #75403, -O3 needs to be filtered to -O2 - replace-flags -O3 -O2 - - use doc || - export ac_cv_prog_HAVE_DOXYGEN="false" - - econf \ - $(use_enable encode) \ - --enable-shared --disable-dependency-tracking || die "configure failed" - emake || die "make failed" -} - -src_install() { - make \ - DESTDIR=${D} \ - docdir=usr/share/doc/${PF} \ - install || die "make install failed" - - dodoc README -} |