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/harfbuzz: harfbuzz-0.9.17.ebuild ChangeLog harfbuzz-0.9.16.ebuild
Date: Tue, 21 May 2013 10:31:22
Message-Id: 20130521103114.A7A5A2171D@flycatcher.gentoo.org
1 scarabeus 13/05/21 10:31:14
2
3 Modified: ChangeLog
4 Added: harfbuzz-0.9.17.ebuild
5 Removed: harfbuzz-0.9.16.ebuild
6 Log:
7 Version bump to 0.9.17 remove older testing as it had quite iusses with lo. This could be stable candidate.
8
9 (Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
10
11 Revision Changes Path
12 1.33 media-libs/harfbuzz/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/ChangeLog?rev=1.33&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/ChangeLog?rev=1.33&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/ChangeLog?r1=1.32&r2=1.33
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/ChangeLog,v
21 retrieving revision 1.32
22 retrieving revision 1.33
23 diff -u -r1.32 -r1.33
24 --- ChangeLog 24 Apr 2013 12:46:08 -0000 1.32
25 +++ ChangeLog 21 May 2013 10:31:14 -0000 1.33
26 @@ -1,6 +1,13 @@
27 # ChangeLog for media-libs/harfbuzz
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/ChangeLog,v 1.32 2013/04/24 12:46:08 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/ChangeLog,v 1.33 2013/05/21 10:31:14 scarabeus Exp $
31 +
32 +*harfbuzz-0.9.17 (21 May 2013)
33 +
34 + 21 May 2013; Tomáš Chvátal <scarabeus@g.o> +harfbuzz-0.9.17.ebuild,
35 + -harfbuzz-0.9.16.ebuild:
36 + Version bump to 0.9.17 remove older testing as it had quite iusses with lo.
37 + This could be stable candidate.
38
39 *harfbuzz-0.9.16 (24 Apr 2013)
40
41
42
43
44 1.1 media-libs/harfbuzz/harfbuzz-0.9.17.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.17.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.17.ebuild?rev=1.1&content-type=text/plain
48
49 Index: harfbuzz-0.9.17.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.9.17.ebuild,v 1.1 2013/05/21 10:31:14 scarabeus Exp $
54
55 EAPI=5
56
57 EGIT_REPO_URI="git://anongit.freedesktop.org/harfbuzz"
58 [[ ${PV} == 9999 ]] && inherit git-2 autotools
59
60 inherit eutils libtool
61
62 DESCRIPTION="An OpenType text shaping engine"
63 HOMEPAGE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
64 [[ ${PV} == 9999 ]] || SRC_URI="http://www.freedesktop.org/software/${PN}/release/${P}.tar.bz2"
65
66 LICENSE="Old-MIT ISC icu"
67 SLOT="0"
68 [[ ${PV} == 9999 ]] || \
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos ~x64-macos ~x64-solaris"
70 IUSE="static-libs"
71
72 RDEPEND="
73 dev-libs/glib:2
74 dev-libs/icu:=
75 media-gfx/graphite2:=
76 media-libs/freetype:2=
77 x11-libs/cairo:=
78 "
79 DEPEND="${RDEPEND}
80 virtual/pkgconfig
81 "
82
83 src_prepare() {
84 if [[ ${CHOST} == *-darwin* ]] ; then
85 # on Darwin we need to link with g++, like automake defaults to,
86 # but overridden by upstream because on Linux this is not
87 # necessary, bug #449126
88 sed -i \
89 -e 's/\<LINK\>/CXXLINK/' \
90 src/Makefile.am || die
91 sed -i \
92 -e '/libharfbuzz_la_LINK = /s/\<LINK\>/CXXLINK/' \
93 src/Makefile.in || die
94 fi
95 [[ ${PV} == 9999 ]] && eautoreconf
96 elibtoolize # for building a shared library on x64-solaris
97 }
98
99 src_configure() {
100 econf \
101 $(use_enable static-libs static)
102 }
103
104 src_install() {
105 default
106 prune_libtool_files --modules
107 }