diff options
Diffstat (limited to 'media-libs/libtheora/libtheora-1.0_beta2.ebuild')
-rw-r--r-- | media-libs/libtheora/libtheora-1.0_beta2.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/media-libs/libtheora/libtheora-1.0_beta2.ebuild b/media-libs/libtheora/libtheora-1.0_beta2.ebuild new file mode 100644 index 000000000000..f39750b10df4 --- /dev/null +++ b/media-libs/libtheora/libtheora-1.0_beta2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta2.ebuild,v 1.1 2007/11/25 21:11:20 drac Exp $ + +inherit autotools eutils + +DESCRIPTION="The Theora Video Compression Codec" +HOMEPAGE="http://www.theora.org" +SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="doc encode examples pic" + +RDEPEND=">=media-libs/libogg-1.1 + encode? ( >=media-libs/libvorbis-1.0.1 )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + dev-util/pkgconfig" + +S=${WORKDIR}/${P/_} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-flags.patch + AT_M4DIR="m4" eautoreconf +} + +src_compile() { + local myconf + + use pic && myconf="--disable-asm" + + use doc || export ac_cv_prog_HAVE_DOXYGEN="false" + + econf --disable-dependency-tracking --disable-examples \ + --disable-sdltest $(use_enable encode) ${myconf} + + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" docdir="usr/share/doc/${PF}" \ + install || die "emake install failed." + + dodoc AUTHORS CHANGES README + + prepalldocs + + if use examples; then + rm examples/Makefile* + insinto /usr/share/doc/${PF}/examples + doins examples/* + fi +} |