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: libass-0.9.8.ebuild ChangeLog
Date: Sun, 27 Sep 2009 09:24:47
Message-Id: E1Mrpzp-0005Nr-7U@stork.gentoo.org
1 aballier 09/09/27 09:24:45
2
3 Modified: ChangeLog
4 Added: libass-0.9.8.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 media-libs/libass/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 12 Aug 2009 08:22:16 -0000 1.15
23 +++ ChangeLog 27 Sep 2009 09:24:44 -0000 1.16
24 @@ -1,6 +1,11 @@
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.15 2009/08/12 08:22:16 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.16 2009/09/27 09:24:44 aballier Exp $
29 +
30 +*libass-0.9.8 (27 Sep 2009)
31 +
32 + 27 Sep 2009; Alexis Ballier <aballier@g.o> +libass-0.9.8.ebuild:
33 + version bump
34
35 12 Aug 2009; Alexis Ballier <aballier@g.o> libass-0.9.7.ebuild:
36 enable fontconfig by default per upstream recommendations
37
38
39
40 1.1 media-libs/libass/libass-0.9.8.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.8.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libass/libass-0.9.8.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libass-0.9.8.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.8.ebuild,v 1.1 2009/09/27 09:24:44 aballier Exp $
50
51 EAPI=2
52
53 DESCRIPTION="Library for SSA/ASS subtitles rendering"
54 HOMEPAGE="http://code.google.com/p/libass/"
55 SRC_URI="http://libass.googlecode.com/files/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
60 IUSE="enca +fontconfig png"
61
62 RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.2.0 )
63 >=media-libs/freetype-2.1.10
64 png? ( >=media-libs/libpng-1.2.15 )
65 virtual/libiconv
66 enca? ( app-i18n/enca )"
67
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 src_configure() {
72 econf \
73 $(use_enable enca) \
74 $(use_enable fontconfig) \
75 $(use_enable png)
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "emake install failed"
80 dodoc Changelog
81 }