blob: de9b5d50ca8a3922b54141d43b4461b5536ff324 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20070924.ebuild,v 1.1 2008/04/07 21:43:23 yngwin Exp $
inherit multilib eutils toolchain-funcs versionator
X264_SVN_P="x264-svn-$(get_version_component_range 3)"
DESCRIPTION="A free library for encoding X264/AVC streams"
HOMEPAGE="http://www.videolan.org/developers/x264.html"
SRC_URI="mirror://gentoo/${X264_SVN_P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="debug threads"
RDEPEND=""
DEPEND="amd64? ( >=dev-lang/yasm-0.6.0 )
x86? ( || ( >=dev-lang/yasm-0.6.2 dev-lang/nasm ) )
x86-fbsd? ( dev-lang/nasm )"
# Block older than 0.6.2 versions of yasm
# It generates incorect pic code and will cause segfaults
# See http://www.tortall.net/projects/yasm/ticket/114
DEPEND="${DEPEND}
x86? ( !<dev-lang/yasm-0.6.2 )"
S="${WORKDIR}/${PN}-svn"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-nostrip.patch"
epatch "${FILESDIR}/${PN}-onlylib.patch"
}
src_compile() {
local myconf=""
use debug && myconf="${myconf} --enable-debug"
./configure --prefix=/usr \
--libdir=/usr/$(get_libdir) \
--enable-pic --enable-shared \
"--extra-cflags=${CFLAGS}" \
"--extra-ldflags=${LDFLAGS}" \
"--extra-asflags=${ASFLAGS}" \
$(use_enable threads pthread) \
${myconf} \
--disable-mp4-output \
|| die "configure failed"
emake CC="$(tc-getCC)" || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS
}
pkg_postinst() {
elog "Please note that this package now only installs"
elog "${PN} libraries. In order to have the encoder,"
elog "please emerge media-video/x264-svn-encoder"
}
|