Gentoo Archives: gentoo-commits

From: "Doug Klima (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/cairo: ChangeLog cairo-1.4.12.ebuild
Date: Thu, 29 Nov 2007 19:39:52
Message-Id: E1IxpEc-0004NG-G7@stork.gentoo.org
1 cardoe 07/11/29 19:39:42
2
3 Modified: ChangeLog
4 Added: cairo-1.4.12.ebuild
5 Log:
6 version bump for bug fixes and security fix for CVE-2007-5503
7 (Portage version: 2.1.4_rc4)
8
9 Revision Changes Path
10 1.147 x11-libs/cairo/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/cairo/ChangeLog?rev=1.147&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/cairo/ChangeLog?rev=1.147&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/cairo/ChangeLog?r1=1.146&r2=1.147
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/cairo/ChangeLog,v
19 retrieving revision 1.146
20 retrieving revision 1.147
21 diff -u -r1.146 -r1.147
22 --- ChangeLog 21 Nov 2007 19:48:32 -0000 1.146
23 +++ ChangeLog 29 Nov 2007 19:39:41 -0000 1.147
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-libs/cairo
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/ChangeLog,v 1.146 2007/11/21 19:48:32 cardoe Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/ChangeLog,v 1.147 2007/11/29 19:39:41 cardoe Exp $
29 +
30 +*cairo-1.4.12 (29 Nov 2007)
31 +
32 + 29 Nov 2007; Doug Klima <cardoe@g.o> +cairo-1.4.12.ebuild:
33 + version bump for bug fixes and security fix for CVE-2007-5503
34
35 *cairo-1.5.2 (21 Nov 2007)
36
37
38
39
40 1.1 x11-libs/cairo/cairo-1.4.12.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/cairo/cairo-1.4.12.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/cairo/cairo-1.4.12.ebuild?rev=1.1&content-type=text/plain
44
45 Index: cairo-1.4.12.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/cairo-1.4.12.ebuild,v 1.1 2007/11/29 19:39:41 cardoe Exp $
50
51 inherit eutils flag-o-matic libtool
52
53 DESCRIPTION="A vector graphics library with cross-device output support"
54 HOMEPAGE="http://cairographics.org/"
55 SRC_URI="http://cairographics.org/releases/${P}.tar.gz"
56
57 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="debug directfb doc glitz opengl svg X xcb"
61
62 # Test causes a circular depend on gtk+... since gtk+ needs cairo but test needs gtk+ so we need to block it
63 RESTRICT="test"
64
65 RDEPEND="media-libs/fontconfig
66 >=media-libs/freetype-2.1.4
67 media-libs/libpng
68 X? (
69 x11-libs/libXrender
70 x11-libs/libXext
71 x11-libs/libX11
72 virtual/xft
73 xcb? ( x11-libs/libxcb
74 x11-libs/xcb-util )
75 )
76 directfb? ( >=dev-libs/DirectFB-0.9.24 )
77 glitz? ( >=media-libs/glitz-0.5.1 )
78 svg? ( dev-libs/libxml2 )"
79
80 DEPEND="${RDEPEND}
81 >=dev-util/pkgconfig-0.19
82 X? ( x11-proto/renderproto
83 xcb? ( x11-proto/xcb-proto ) )
84 doc? (
85 >=dev-util/gtk-doc-1.3
86 ~app-text/docbook-xml-dtd-4.2
87 )"
88
89 src_unpack() {
90 unpack ${A}
91 cd "${S}"
92
93 # We need to run elibtoolize to ensure correct so versioning on FreeBSD
94 elibtoolize
95 }
96
97 src_compile() {
98 #gets rid of fbmmx.c inlining warnings
99 append-flags -finline-limit=1200
100
101 if use glitz && use opengl; then
102 export glitz_LIBS=-lglitz-glx
103 fi
104
105 econf $(use_enable X xlib) $(use_enable doc gtk-doc) $(use_enable directfb) \
106 $(use_enable svg) $(use_enable glitz) \
107 $(use_enable debug test-surfaces) --enable-pdf --enable-png \
108 --enable-freetype --enable-ps $(use_enable xcb) \
109 || die "configure failed"
110
111 emake || die "compile failed"
112 }
113
114 src_install() {
115 make DESTDIR="${D}" install || die "Installation failed"
116 dodoc AUTHORS ChangeLog NEWS README TODO
117 }
118
119
120
121 --
122 gentoo-commits@g.o mailing list