Gentoo Archives: gentoo-commits

From: "Jory Pratt (anarchy)" <anarchy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: mozcoreconf-2.eclass
Date: Wed, 02 Dec 2009 22:42:02
Message-Id: E1NFxtX-00069B-5M@stork.gentoo.org
1 anarchy 09/12/02 22:41:59
2
3 Modified: mozcoreconf-2.eclass
4 Log:
5 fix icecat support in mozcoreconf-2.eclass
6
7 Revision Changes Path
8 1.13 eclass/mozcoreconf-2.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mozcoreconf-2.eclass?rev=1.13&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mozcoreconf-2.eclass?rev=1.13&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mozcoreconf-2.eclass?r1=1.12&r2=1.13
13
14 Index: mozcoreconf-2.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v
17 retrieving revision 1.12
18 retrieving revision 1.13
19 diff -u -r1.12 -r1.13
20 --- mozcoreconf-2.eclass 2 Apr 2009 21:40:39 -0000 1.12
21 +++ mozcoreconf-2.eclass 2 Dec 2009 22:41:59 -0000 1.13
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.12 2009/04/02 21:40:39 solar Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.13 2009/12/02 22:41:59 anarchy Exp $
27 #
28 # mozcoreconf.eclass : core options for mozilla
29 # inherit mozconfig-2 if you need USE flags
30 @@ -32,6 +32,7 @@
31 declare EM=$([[ ${PN} == enigmail ]] && echo true || echo false)
32 declare XUL=$([[ ${PN} == *xulrunner ]] && echo true || echo false)
33 declare SM=$([[ ${PN} == seamonkey ]] && echo true || echo false)
34 + declare IC=$([[ ${PN} == *icecat ]] && echo true || echo false)
35
36 ####################################
37 #
38 @@ -69,6 +70,9 @@
39 : >.mozconfig || die "initial mozconfig creation failed"
40 mozconfig_annotate "" --enable-application=suite
41 mozconfig_annotate "" --enable-extensions=default ;;
42 + *icecat)
43 + cp browser/config/mozconfig .mozconfig \
44 + || die "cp browser/config/mozconfig failed" ;;
45 esac
46
47 ####################################