diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2010-09-08 00:00:10 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2010-09-08 00:00:10 +0000 |
commit | 209280be381e1af05af7710f6aa8ce7722f460c7 (patch) | |
tree | 5bee92a645b2b29b1cdfd309a7ba0cc181211a2b /media-libs | |
parent | More general license template, bug 336249. (diff) | |
download | gentoo-2-209280be381e1af05af7710f6aa8ce7722f460c7.tar.gz gentoo-2-209280be381e1af05af7710f6aa8ce7722f460c7.tar.bz2 gentoo-2-209280be381e1af05af7710f6aa8ce7722f460c7.zip |
New version
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libvpx/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libvpx/libvpx-0.9.2.ebuild | 62 |
2 files changed, 68 insertions, 1 deletions
diff --git a/media-libs/libvpx/ChangeLog b/media-libs/libvpx/ChangeLog index 38e6a16cecaa..a9eb38676813 100644 --- a/media-libs/libvpx/ChangeLog +++ b/media-libs/libvpx/ChangeLog @@ -1,6 +1,11 @@ # 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.4 2010/06/12 21:45:36 spatz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.5 2010/09/08 00:00:10 lu_zero Exp $ + +*libvpx-0.9.2 (07 Sep 2010) + + 07 Sep 2010; Luca Barbato <lu_zero@gentoo.org> +libvpx-0.9.2.ebuild: + New version 12 Jun 2010; Dror Levin <spatz@gentoo.org> libvpx-0.9.0_p20100612.ebuild, libvpx-9999.ebuild, metadata.xml: diff --git a/media-libs/libvpx/libvpx-0.9.2.ebuild b/media-libs/libvpx/libvpx-0.9.2.ebuild new file mode 100644 index 000000000000..581e87ddb621 --- /dev/null +++ b/media-libs/libvpx/libvpx-0.9.2.ebuild @@ -0,0 +1,62 @@ +# 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-0.9.2.ebuild,v 1.1 2010/09/08 00:00:10 lu_zero Exp $ + +EAPI=2 +inherit multilib toolchain-funcs + +if [[ ${PV} == *9999* ]]; then + inherit git + EGIT_REPO_URI="git://review.webmproject.org/${PN}.git" + KEYWORDS="" +elif [[ ${PV} == *pre* ]]; then + SRC_URI="mirror://gentoo/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +else + SRC_URI="http://webm.googlecode.com/files/${PN}-v${PV}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="WebM VP8 Codec SDK" +HOMEPAGE="http://www.webmproject.org" + +LICENSE="BSD" +SLOT="0" +IUSE="altivec debug doc mmx postproc sse sse2 sse3 ssse3 +threads" + +RDEPEND="" +DEPEND="amd64? ( dev-lang/yasm ) + x86? ( 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 altivec) \ + $(use_enable mmx) \ + $(use_enable sse) \ + $(use_enable sse2) \ + $(use_enable sse3) \ + $(use_enable ssse3) \ + $(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 README || die +} |