2010-12-12 09:06:58 +01:00
|
|
|
# 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.5.ebuild,v 1.3 2010/12/10 21:46:07 hwoarang 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
|
|
|
|
MY_P="${PN}-v${PV}"
|
|
|
|
SRC_URI="http://webm.googlecode.com/files/${MY_P}.tar.bz2"
|
|
|
|
KEYWORDS="amd64 x86"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
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
|
2010-12-12 23:46:17 +01:00
|
|
|
archparm=""
|
|
|
|
[ "$ABI" = "x86" ] && archparm="--target=x86-linux-gcc"
|
|
|
|
[ "$ABI" = "x86_64" ] && archparm="--target=x86_64-linux-gcc"
|
2010-12-12 09:06:58 +01:00
|
|
|
./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) \
|
2010-12-12 23:46:17 +01:00
|
|
|
$archparm \
|
2010-12-12 09:06:58 +01:00
|
|
|
--as=yasm \
|
|
|
|
|| die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
# http://bugs.gentoo.org/show_bug.cgi?id=323805
|
|
|
|
emake -j1 DESTDIR="${D}" install || die
|
|
|
|
|
|
|
|
dodoc AUTHORS CHANGELOG README || die
|
|
|
|
}
|