Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libass: ChangeLog libass-0.10.2.ebuild
Date: Wed, 22 Jan 2014 06:29:42
Message-Id: 20140122062937.BEC2B2004C@flycatcher.gentoo.org
1 radhermit 14/01/22 06:29:37
2
3 Modified: ChangeLog
4 Added: libass-0.10.2.ebuild
5 Log:
6 Version bump (bug #498796). Update to EAPI 5, add subslot version, and fix harfbuzz truetype useflag dep (bug #452210).
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.66 media-libs/libass/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 6 Jul 2013 17:08:27 -0000 1.65
24 +++ ChangeLog 22 Jan 2014 06:29:37 -0000 1.66
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/libass
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.65 2013/07/06 17:08:27 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.66 2014/01/22 06:29:37 radhermit Exp $
31 +
32 +*libass-0.10.2 (22 Jan 2014)
33 +
34 + 22 Jan 2014; Tim Harder <radhermit@g.o> +libass-0.10.2.ebuild:
35 + Version bump (bug #498796). Update to EAPI 5, add subslot version, and fix
36 + harfbuzz truetype useflag dep (bug #452210).
37
38 06 Jul 2013; Agostino Sarubbo <ago@g.o> libass-0.10.1.ebuild:
39 Stable for alpha, wrt bug #470762
40
41
42
43 1.1 media-libs/libass/libass-0.10.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/libass-0.10.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/libass-0.10.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libass-0.10.2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.10.2.ebuild,v 1.1 2014/01/22 06:29:37 radhermit Exp $
53
54 EAPI=5
55 inherit eutils
56
57 DESCRIPTION="Library for SSA/ASS subtitles rendering"
58 HOMEPAGE="http://code.google.com/p/libass/"
59 SRC_URI="http://libass.googlecode.com/files/${P}.tar.xz"
60
61 LICENSE="ISC"
62 SLOT="0/5" # subslot = libass soname version
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
64 IUSE="+enca +fontconfig +harfbuzz static-libs"
65
66 RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.4.2 )
67 >=media-libs/freetype-2.4:2
68 virtual/libiconv
69 >=dev-libs/fribidi-0.19.0
70 harfbuzz? ( >=media-libs/harfbuzz-0.9.11[truetype] )
71 enca? ( app-i18n/enca )"
72
73 DEPEND="${RDEPEND}
74 virtual/pkgconfig"
75
76 DOCS="Changelog"
77
78 src_configure() {
79 econf \
80 $(use_enable enca) \
81 $(use_enable fontconfig) \
82 $(use_enable harfbuzz) \
83 $(use_enable static-libs static)
84 }
85
86 src_install() {
87 default
88 prune_libtool_files
89 }