Gentoo Archives: gentoo-commits

From: "Ian Whyman (thev00d00)" <thev00d00@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/fribidi: fribidi-0.19.6.ebuild ChangeLog
Date: Sat, 03 May 2014 10:11:59
Message-Id: 20140503101156.69C812004C@flycatcher.gentoo.org
1 thev00d00 14/05/03 10:11:56
2
3 Modified: ChangeLog
4 Added: fribidi-0.19.6.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.82 dev-libs/fribidi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/ChangeLog?rev=1.82&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/ChangeLog?rev=1.82&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/ChangeLog?r1=1.81&r2=1.82
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/fribidi/ChangeLog,v
20 retrieving revision 1.81
21 retrieving revision 1.82
22 diff -u -r1.81 -r1.82
23 --- ChangeLog 10 Aug 2013 22:08:07 -0000 1.81
24 +++ ChangeLog 3 May 2014 10:11:56 -0000 1.82
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/fribidi
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fribidi/ChangeLog,v 1.81 2013/08/10 22:08:07 aballier Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fribidi/ChangeLog,v 1.82 2014/05/03 10:11:56 thev00d00 Exp $
31 +
32 +*fribidi-0.19.6 (03 May 2014)
33 +
34 + 03 May 2014; Ian Whyman <thev00d00@g.o>
35 + +files/fribidi-0.19.6-page-size-header.patch, +fribidi-0.19.6.ebuild:
36 + Version Bump
37
38 *fribidi-0.19.5-r2 (10 Aug 2013)
39
40
41
42
43 1.1 dev-libs/fribidi/fribidi-0.19.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/fribidi-0.19.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fribidi/fribidi-0.19.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: fribidi-0.19.6.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/dev-libs/fribidi/fribidi-0.19.6.ebuild,v 1.1 2014/05/03 10:11:56 thev00d00 Exp $
53
54 EAPI=5
55
56 AUTOTOOLS_AUTORECONF=1
57
58 inherit autotools eutils autotools-multilib
59
60 DESCRIPTION="A free implementation of the unicode bidirectional algorithm"
61 HOMEPAGE="http://fribidi.org/"
62 SRC_URI="http://fribidi.org/download/${P}.tar.bz2"
63
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66 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"
67 IUSE="static-libs"
68
69 RESTRICT="test" #397347
70
71 RDEPEND=">=dev-libs/glib-2:2[${MULTILIB_USEDEP}]
72 abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r10
73 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
74 DEPEND="${RDEPEND}
75 virtual/pkgconfig"
76
77 DOCS=( AUTHORS NEWS README ChangeLog THANKS TODO )
78
79 src_prepare() {
80 epatch \
81 "${FILESDIR}"/${PN}-0.19.2-nodoc.patch \
82 "${FILESDIR}"/${P}-page-size-header.patch
83
84 # Fix compability with dev-libs/glib >= 2.31
85 sed -i \
86 -e '/include/s:<glib/gstrfuncs.h>:<glib.h>:' \
87 -e '/include/s:<glib/gmem.h>:<glib.h>:' \
88 charset/fribidi-char-sets.c lib/mem.h || die
89
90 autotools-multilib_src_prepare
91 }
92
93 src_configure() {
94 # --with-glib=yes is required for #345621 to ensure "Requires: glib-2.0" is
95 # present in /usr/lib/pkgconfig/fribidi.pc
96 local myeconfargs=( --with-glib=yes )
97 autotools-multilib_src_configure
98 }