Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/xulrunner: ChangeLog xulrunner-1.8.1.14.ebuild
Date: Sat, 21 Jun 2008 21:13:16
Message-Id: E1KAAOU-0003za-Ca@stork.gentoo.org
1 armin76 08/06/21 21:13:10
2
3 Modified: ChangeLog xulrunner-1.8.1.14.ebuild
4 Log:
5 Add check for pango and cairo to be built with X, bug #228801
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.121 net-libs/xulrunner/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/ChangeLog?rev=1.121&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/ChangeLog?rev=1.121&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/ChangeLog?r1=1.120&r2=1.121
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-libs/xulrunner/ChangeLog,v
18 retrieving revision 1.120
19 retrieving revision 1.121
20 diff -u -r1.120 -r1.121
21 --- ChangeLog 20 Jun 2008 15:03:42 -0000 1.120
22 +++ ChangeLog 21 Jun 2008 21:13:09 -0000 1.121
23 @@ -1,6 +1,9 @@
24 # ChangeLog for net-libs/xulrunner
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-libs/xulrunner/ChangeLog,v 1.120 2008/06/20 15:03:42 armin76 Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-libs/xulrunner/ChangeLog,v 1.121 2008/06/21 21:13:09 armin76 Exp $
28 +
29 + 21 Jun 2008; Raúl Porcel <armin76@g.o> xulrunner-1.8.1.14.ebuild:
30 + Add check for pango and cairo to be built with X, bug #228801
31
32 20 Jun 2008; Raúl Porcel <armin76@g.o> xulrunner-1.9-r2.ebuild:
33 Add check for pango and cairo to be built with X, bug #228451
34
35
36
37 1.7 net-libs/xulrunner/xulrunner-1.8.1.14.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.14.ebuild?rev=1.7&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.14.ebuild?rev=1.7&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.14.ebuild?r1=1.6&r2=1.7
42
43 Index: xulrunner-1.8.1.14.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.14.ebuild,v
46 retrieving revision 1.6
47 retrieving revision 1.7
48 diff -u -r1.6 -r1.7
49 --- xulrunner-1.8.1.14.ebuild 22 Apr 2008 16:12:14 -0000 1.6
50 +++ xulrunner-1.8.1.14.ebuild 21 Jun 2008 21:13:09 -0000 1.7
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.14.ebuild,v 1.6 2008/04/22 16:12:14 dertobi123 Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.14.ebuild,v 1.7 2008/06/21 21:13:09 armin76 Exp $
56
57 WANT_AUTOCONF="2.1"
58
59 @@ -36,6 +36,20 @@
60 export BUILD_OFFICIAL=1
61 export MOZILLA_OFFICIAL=1
62
63 +pkg_setup(){
64 + if ! built_with_use x11-libs/cairo X; then
65 + eerror "Cairo is not built with X useflag."
66 + eerror "Please add 'X' to your USE flags, and re-emerge cairo."
67 + die "Cairo needs X"
68 + fi
69 +
70 + if ! built_with_use --missing true x11-libs/pango X; then
71 + eerror "Pango is not built with X useflag."
72 + eerror "Please add 'X' to your USE flags, and re-emerge pango."
73 + die "Pango needs X"
74 + fi
75 +}
76 +
77 src_unpack() {
78 unpack ${P}-source.tar.bz2 ${PATCH}.tar.bz2
79
80
81
82
83 --
84 gentoo-commits@l.g.o mailing list