Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/x264: ChangeLog x264-0.0.20090629.ebuild
Date: Mon, 29 Jun 2009 21:37:33
Message-Id: E1MLOXZ-0006xc-1x@stork.gentoo.org
1 aballier 09/06/29 21:37:29
2
3 Modified: ChangeLog
4 Added: x264-0.0.20090629.ebuild
5 Log:
6 bump a new snapshot
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.22 media-libs/x264/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 29 Jun 2009 21:26:53 -0000 1.21
23 +++ ChangeLog 29 Jun 2009 21:37:28 -0000 1.22
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/x264
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.21 2009/06/29 21:26:53 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.22 2009/06/29 21:37:28 aballier Exp $
29 +
30 +*x264-0.0.20090629 (29 Jun 2009)
31 +
32 + 29 Jun 2009; Alexis Ballier <aballier@g.o>
33 + +x264-0.0.20090629.ebuild:
34 + bump a new snapshot
35
36 29 Jun 2009; Alexis Ballier <aballier@g.o>
37 -files/x264-onlylib.patch, -x264-0.0.20070924.ebuild,
38
39
40
41 1.1 media-libs/x264/x264-0.0.20090629.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/x264-0.0.20090629.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/x264-0.0.20090629.ebuild?rev=1.1&content-type=text/plain
45
46 Index: x264-0.0.20090629.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20090629.ebuild,v 1.1 2009/06/29 21:37:28 aballier Exp $
51
52 EAPI="1"
53 inherit multilib eutils toolchain-funcs versionator
54
55 MY_P="x264-snapshot-$(get_version_component_range 3)-2245"
56
57 DESCRIPTION="A free library for encoding X264/AVC streams"
58 HOMEPAGE="http://www.videolan.org/developers/x264.html"
59 SRC_URI="ftp://ftp.videolan.org/pub/videolan/x264/snapshots/${MY_P}.tar.bz2"
60 SLOT="0"
61 LICENSE="GPL-2"
62 KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE="debug +threads"
64
65 RDEPEND=""
66 DEPEND="amd64? ( >=dev-lang/yasm-0.6.2 )
67 x86? ( >=dev-lang/yasm-0.6.2 )
68 x86-fbsd? ( >=dev-lang/yasm-0.6.2 )"
69
70 S="${WORKDIR}/${MY_P}"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}/${PN}-nostrip.patch"
76 epatch "${FILESDIR}/${PN}-onlylib-20090408.patch"
77 }
78
79 src_compile() {
80 local myconf=""
81 use debug && myconf="${myconf} --enable-debug"
82 ./configure --prefix=/usr \
83 --libdir=/usr/$(get_libdir) \
84 --enable-pic --enable-shared \
85 "--extra-cflags=${CFLAGS}" \
86 "--extra-ldflags=${LDFLAGS}" \
87 "--extra-asflags=${ASFLAGS}" \
88 "--host=${CHOST}" \
89 $(use_enable threads pthread) \
90 ${myconf} \
91 --disable-mp4-output \
92 || die "configure failed"
93 emake CC="$(tc-getCC)" || die "make failed"
94 }
95
96 src_install() {
97 make DESTDIR="${D}" install || die
98 dodoc AUTHORS doc/*.txt
99 }
100
101 pkg_postinst() {
102 elog "Please note that this package now only installs"
103 elog "${PN} libraries. In order to have the encoder,"
104 elog "please emerge media-video/x264-encoder."
105 }