blob: 581e87ddb6219ea4e4ec5d9f020af977efdec622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
}
|