Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/fribidi: fribidi-0.19.5.ebuild ChangeLog
Date: Mon, 03 Dec 2012 07:52:44
Message-Id: 20121203075232.350D72171D@flycatcher.gentoo.org
1 ssuominen 12/12/03 07:52:32
2
3 Modified: ChangeLog
4 Added: fribidi-0.19.5.ebuild
5 Log:
6 Version bump (to gain Unicode 6.2.0 support)
7
8 (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.61 dev-libs/fribidi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/fribidi/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 3 Sep 2012 15:57:46 -0000 1.60
24 +++ ChangeLog 3 Dec 2012 07:52:32 -0000 1.61
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/fribidi
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fribidi/ChangeLog,v 1.60 2012/09/03 15:57:46 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fribidi/ChangeLog,v 1.61 2012/12/03 07:52:32 ssuominen Exp $
30 +
31 +*fribidi-0.19.5 (03 Dec 2012)
32 +
33 + 03 Dec 2012; Samuli Suominen <ssuominen@g.o> +fribidi-0.19.5.ebuild:
34 + Version bump (to gain Unicode 6.2.0 support)
35
36 *fribidi-0.19.4 (03 Sep 2012)
37
38
39
40
41 1.1 dev-libs/fribidi/fribidi-0.19.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/fribidi-0.19.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/fribidi-0.19.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: fribidi-0.19.5.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/fribidi/fribidi-0.19.5.ebuild,v 1.1 2012/12/03 07:52:32 ssuominen Exp $
51
52 EAPI=4
53 inherit autotools eutils
54
55 DESCRIPTION="A free implementation of the unicode bidirectional algorithm"
56 HOMEPAGE="http://fribidi.org/"
57 SRC_URI="http://fribidi.org/download/${P}.tar.bz2"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
62 IUSE="static-libs"
63
64 RESTRICT="test" #397347
65
66 RDEPEND=">=dev-libs/glib-2"
67 DEPEND="${RDEPEND}
68 virtual/pkgconfig"
69
70 DOCS="AUTHORS NEWS README ChangeLog THANKS TODO"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${PN}-0.19.2-nodoc.patch
74
75 # Fix compability with dev-libs/glib >= 2.31
76 sed -i \
77 -e '/include/s:<glib/gstrfuncs.h>:<glib.h>:' \
78 -e '/include/s:<glib/gmem.h>:<glib.h>:' \
79 charset/fribidi-char-sets.c lib/mem.h || die
80
81 eautoreconf
82 }
83
84 src_configure() {
85 # --with-glib=yes is required for #345621 to ensure "Requires: glib-2.0" is
86 # present in /usr/lib/pkgconfig/fribidi.pc
87 econf \
88 $(use_enable static-libs static) \
89 --with-glib=yes
90 }
91
92 src_install() {
93 default
94 prune_libtool_files
95 }