diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2010-06-10 16:02:09 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2010-06-10 16:02:09 +0000 |
commit | eaa78ec55039c48faace9a7cd1d27ecfeafa2ab6 (patch) | |
tree | 352680612b37f8dff6166cb8e0d8bfd6dadec780 /media-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-eaa78ec55039c48faace9a7cd1d27ecfeafa2ab6.tar.gz gentoo-2-eaa78ec55039c48faace9a7cd1d27ecfeafa2ab6.tar.bz2 gentoo-2-eaa78ec55039c48faace9a7cd1d27ecfeafa2ab6.zip |
initial libvpx ebuild, only live
(Portage version: 2.2.00.14200-prefix/cvs/Darwin i386)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libvpx/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/libvpx/libvpx-9999.ebuild | 46 | ||||
-rw-r--r-- | media-libs/libvpx/metadata.xml | 11 |
3 files changed, 67 insertions, 0 deletions
diff --git a/media-libs/libvpx/ChangeLog b/media-libs/libvpx/ChangeLog new file mode 100644 index 000000000000..0a599847c55b --- /dev/null +++ b/media-libs/libvpx/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-libs/libvpx +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.1 2010/06/10 16:02:09 lu_zero Exp $ + +*libvpx-9999 (10 Jun 2010) + + 10 Jun 2010; Luca Barbato <lu_zero@gentoo.org> +libvpx-9999.ebuild: + Initial live ebuild, 0.9.0 release _SHOULD_NOT_ be put into portage, thanks + to the people in bug #320817 for the support + diff --git a/media-libs/libvpx/libvpx-9999.ebuild b/media-libs/libvpx/libvpx-9999.ebuild new file mode 100644 index 000000000000..0f90ddebb673 --- /dev/null +++ b/media-libs/libvpx/libvpx-9999.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.1 2010/06/10 16:02:09 lu_zero Exp $ + +EAPI=2 +inherit eutils multilib toolchain-funcs git + +EGIT_REPO_URI="git://review.webmproject.org/${PN}.git" + +DESCRIPTION="WebM VP8 Codec SDK" +HOMEPAGE="http://www.webmproject.org" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="" +IUSE="debug doc postproc +threads" + +RDEPEND="" +DEPEND="dev-lang/yasm + doc? ( + app-doc/doxygen + dev-lang/php + ) +" + +src_configure() { + tc-export CC + ./configure \ + --prefix=/usr \ + --libdir=/usr/$(get_libdir) \ + --enable-pic \ + --enable-vp8 \ + --enable-shared \ + $(use_enable debug) \ + $(use_enable debug debug-libs) \ + $(use_enable doc install-docs) \ + $(use_enable postproc) \ + $(use_enable threads multithread) \ + || die +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc AUTHORS CHANGELOG LICENSE README || die +} diff --git a/media-libs/libvpx/metadata.xml b/media-libs/libvpx/metadata.xml new file mode 100644 index 000000000000..84868f595a3a --- /dev/null +++ b/media-libs/libvpx/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>video</herd> + <maintainer> + <email>media-video@gentoo.org</email> + </maintainer> + <use> + <flag name="postproc">Enable additional post processing filters</flag> + </use> +</pkgmetadata> |