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