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.12.0.ebuild
Date: Wed, 03 Dec 2014 17:09:12
Message-Id: 20141203170906.2230EB790@oystercatcher.gentoo.org
1 aballier 14/12/03 17:09:06
2
3 Modified: ChangeLog
4 Added: libass-0.12.0.ebuild
5 Log:
6 version bump, bug #528758 by tokiclover
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.80 media-libs/libass/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?rev=1.80&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?rev=1.80&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/ChangeLog?r1=1.79&r2=1.80
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v
21 retrieving revision 1.79
22 retrieving revision 1.80
23 diff -u -r1.79 -r1.80
24 --- ChangeLog 11 Oct 2014 12:48:54 -0000 1.79
25 +++ ChangeLog 3 Dec 2014 17:09:06 -0000 1.80
26 @@ -1,6 +1,11 @@
27 # ChangeLog for media-libs/libass
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.79 2014/10/11 12:48:54 maekke Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/ChangeLog,v 1.80 2014/12/03 17:09:06 aballier Exp $
31 +
32 +*libass-0.12.0 (03 Dec 2014)
33 +
34 + 03 Dec 2014; Alexis Ballier <aballier@g.o> +libass-0.12.0.ebuild:
35 + version bump, bug #528758 by tokiclover
36
37 11 Oct 2014; Markus Meier <maekke@g.o> libass-0.11.2.ebuild:
38 arm stable, bug #512012
39
40
41
42 1.1 media-libs/libass/libass-0.12.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/libass-0.12.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libass/libass-0.12.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libass-0.12.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.12.0.ebuild,v 1.1 2014/12/03 17:09:06 aballier Exp $
52
53 EAPI=5
54 inherit eutils multilib-minimal
55
56 DESCRIPTION="Library for SSA/ASS subtitles rendering"
57 HOMEPAGE="http://github.com/libass/libass"
58 SRC_URI="http://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz"
59
60 LICENSE="ISC"
61 SLOT="0/5" # subslot = libass soname version
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
63 IUSE="+enca +fontconfig +harfbuzz static-libs"
64
65 RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] )
66 >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}]
67 >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
68 >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}]
69 harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] )
70 enca? ( >=app-i18n/enca-1.14-r1[${MULTILIB_USEDEP}] )"
71
72 DEPEND="${RDEPEND}
73 virtual/pkgconfig"
74
75 X86_CPU_OPTS="abi_x86_32 abi_x86_64"
76 for i in ${X86_CPU_OPTS} ; do
77 DEPEND="${DEPEND}
78 ${i}? ( dev-lang/yasm )"
79 done
80
81 DOCS="Changelog"
82
83 multilib_src_configure() {
84 ECONF_SOURCE="${S}" econf \
85 $(use_enable enca) \
86 $(use_enable fontconfig) \
87 $(use_enable harfbuzz) \
88 $(use_enable static-libs static)
89 }
90
91 multilib_src_install_all() {
92 einstalldocs
93 prune_libtool_files
94 }