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.20100423.ebuild
Date: Sat, 24 Apr 2010 15:46:52
Message-Id: 20100424154648.49A0C2C04C@corvid.gentoo.org
1 aballier 10/04/24 15:46:48
2
3 Modified: ChangeLog
4 Added: x264-0.0.20100423.ebuild
5 Log:
6 push a new snapshot
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.34 media-libs/x264/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 31 Jan 2010 17:30:38 -0000 1.33
23 +++ ChangeLog 24 Apr 2010 15:46:48 -0000 1.34
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/x264
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.33 2010/01/31 17:30:38 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.34 2010/04/24 15:46:48 aballier Exp $
29 +
30 +*x264-0.0.20100423 (24 Apr 2010)
31 +
32 + 24 Apr 2010; Alexis Ballier <aballier@g.o>
33 + +x264-0.0.20100423.ebuild:
34 + push a new snapshot
35
36 31 Jan 2010; Raúl Porcel <armin76@g.o> x264-0.0.20091021.ebuild:
37 sparc stable wrt #297845
38
39
40
41 1.1 media-libs/x264/x264-0.0.20100423.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/x264-0.0.20100423.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/x264/x264-0.0.20100423.ebuild?rev=1.1&content-type=text/plain
45
46 Index: x264-0.0.20100423.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.20100423.ebuild,v 1.1 2010/04/24 15:46:48 aballier Exp $
51
52 EAPI=2
53 inherit eutils multilib 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
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
64 IUSE="debug +threads pic"
65
66 RDEPEND=""
67 DEPEND="amd64? ( >=dev-lang/yasm-0.6.2 )
68 x86? ( >=dev-lang/yasm-0.6.2 )
69 x86-fbsd? ( >=dev-lang/yasm-0.6.2 )"
70
71 S=${WORKDIR}/${MY_P}
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PN}-nostrip.patch \
75 "${FILESDIR}"/${PN}-onlylib-20090408.patch
76 }
77
78 src_configure() {
79 tc-export CC
80
81 local myconf=""
82 use debug && myconf="${myconf} --enable-debug"
83
84 if use x86 && use pic; then
85 myconf="${myconf} --disable-asm"
86 fi
87
88 ./configure \
89 --prefix=/usr \
90 --libdir=/usr/$(get_libdir) \
91 --disable-avs-input \
92 --disable-lavf-input \
93 --disable-mp4-output \
94 $(use_enable threads pthread) \
95 --enable-pic \
96 --enable-shared \
97 --extra-asflags="${ASFLAGS}" \
98 --extra-cflags="${CFLAGS}" \
99 --extra-ldflags="${LDFLAGS}" \
100 --host="${CHOST}" \
101 ${myconf} \
102 || die
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die
107 dodoc AUTHORS doc/*.txt
108 }