Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libass: ChangeLog libass-0.9.11.ebuild libass-0.9.9.ebuild libass-0.9.10.ebuild
Date: Tue, 05 Apr 2011 17:44:44
Message-Id: 20110405174435.31DF920054@flycatcher.gentoo.org
1 scarabeus 11/04/05 17:44:35
2
3 Modified: ChangeLog libass-0.9.11.ebuild
4 Removed: libass-0.9.9.ebuild libass-0.9.10.ebuild
5 Log:
6 Make static-libs optional. Punt .la files. Drop overshadowed versions.
7
8 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.40 media-libs/libass/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 20 Mar 2011 10:59:33 -0000 1.39
24 +++ ChangeLog 5 Apr 2011 17:44:35 -0000 1.40
25 @@ -1,6 +1,10 @@
26 # ChangeLog for media-libs/libass
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.39 2011/03/20 10:59:33 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.40 2011/04/05 17:44:35 scarabeus Exp $
30 +
31 + 05 Apr 2011; Tomáš Chvátal <scarabeus@g.o> -libass-0.9.9.ebuild,
32 + -libass-0.9.10.ebuild, libass-0.9.11.ebuild:
33 + Make static-libs optional. Punt .la files. Drop overshadowed versions.
34
35 20 Mar 2011; Raúl Porcel <armin76@g.o> libass-0.9.11.ebuild:
36 arm/ia64/sparc stable wrt #343977
37
38
39
40 1.10 media-libs/libass/libass-0.9.11.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/libass-0.9.11.ebuild?rev=1.10&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/libass-0.9.11.ebuild?rev=1.10&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/libass-0.9.11.ebuild?r1=1.9&r2=1.10
45
46 Index: libass-0.9.11.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.11.ebuild,v
49 retrieving revision 1.9
50 retrieving revision 1.10
51 diff -u -r1.9 -r1.10
52 --- libass-0.9.11.ebuild 20 Mar 2011 10:59:33 -0000 1.9
53 +++ libass-0.9.11.ebuild 5 Apr 2011 17:44:35 -0000 1.10
54 @@ -1,8 +1,8 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.11.ebuild,v 1.9 2011/03/20 10:59:33 armin76 Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.11.ebuild,v 1.10 2011/04/05 17:44:35 scarabeus Exp $
59
60 -EAPI=2
61 +EAPI=3
62
63 DESCRIPTION="Library for SSA/ASS subtitles rendering"
64 HOMEPAGE="http://code.google.com/p/libass/"
65 @@ -11,7 +11,7 @@
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
69 -IUSE="+enca +fontconfig"
70 +IUSE="+enca +fontconfig static-libs"
71
72 RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.4.2 )
73 >=media-libs/freetype-2.2.1
74 @@ -24,10 +24,13 @@
75 src_configure() {
76 econf \
77 $(use_enable enca) \
78 - $(use_enable fontconfig)
79 + $(use_enable fontconfig) \
80 + $(use_enable static-libs static)
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die
85 dodoc Changelog
86 +
87 + find "${ED}" -name '*.la' -delete
88 }