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/libass: ChangeLog libass-0.9.6.ebuild
Date: Sat, 27 Jun 2009 09:23:55
Message-Id: E1MKU8Y-0005MB-8K@stork.gentoo.org
1 aballier 09/06/27 09:23:54
2
3 Modified: ChangeLog
4 Added: libass-0.9.6.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 media-libs/libass/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 4 Apr 2009 18:57:22 -0000 1.12
23 +++ ChangeLog 27 Jun 2009 09:23:54 -0000 1.13
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libass
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.12 2009/04/04 18:57:22 solar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.13 2009/06/27 09:23:54 aballier Exp $
29 +
30 +*libass-0.9.6 (27 Jun 2009)
31 +
32 + 27 Jun 2009; Alexis Ballier <aballier@g.o> +libass-0.9.6.ebuild,
33 + +files/libass-0.9.6_automagic.patch:
34 + version bump
35
36 04 Apr 2009; <solar@g.o> libass-0.9.5.ebuild:
37 - Keyword ~arm
38
39
40
41 1.1 media-libs/libass/libass-0.9.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libass-0.9.6.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/libass/libass-0.9.6.ebuild,v 1.1 2009/06/27 09:23:54 aballier Exp $
51
52 inherit autotools eutils
53
54 DESCRIPTION="Library for SSA/ASS subtitles rendering"
55 HOMEPAGE="http://sourceforge.net/projects/libass/"
56 SRC_URI="mirror://sourceforge/libass/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
61 IUSE="enca iconv png"
62
63 RDEPEND=">=media-libs/fontconfig-2.2.0
64 >=media-libs/freetype-2.1.10
65 png? ( >=media-libs/libpng-1.2.15 )
66 iconv? ( virtual/libiconv )
67 enca? ( app-i18n/enca )"
68
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}/${P}_automagic.patch"
76 eautoreconf
77 }
78
79 src_compile() {
80 econf \
81 $(use_with enca) \
82 $(use_with iconv) \
83 $(use_with png)
84 emake || die "make failed"
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 dodoc Changelog
90 }