diff options
author | Jory Pratt <anarchy@gentoo.org> | 2009-12-02 22:41:59 +0000 |
---|---|---|
committer | Jory Pratt <anarchy@gentoo.org> | 2009-12-02 22:41:59 +0000 |
commit | 07a248c109952ec11b2d280e4b22794fe76e9aba (patch) | |
tree | 09659659a69b878802eb6c2e316c69f326a735ff /eclass/mozcoreconf-2.eclass | |
parent | old (diff) | |
download | gentoo-2-07a248c109952ec11b2d280e4b22794fe76e9aba.tar.gz gentoo-2-07a248c109952ec11b2d280e4b22794fe76e9aba.tar.bz2 gentoo-2-07a248c109952ec11b2d280e4b22794fe76e9aba.zip |
fix icecat support in mozcoreconf-2.eclass
Diffstat (limited to 'eclass/mozcoreconf-2.eclass')
-rw-r--r-- | eclass/mozcoreconf-2.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/mozcoreconf-2.eclass b/eclass/mozcoreconf-2.eclass index 31ce1bb6918b..f231d0581c1a 100644 --- a/eclass/mozcoreconf-2.eclass +++ b/eclass/mozcoreconf-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.12 2009/04/02 21:40:39 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.13 2009/12/02 22:41:59 anarchy Exp $ # # mozcoreconf.eclass : core options for mozilla # inherit mozconfig-2 if you need USE flags @@ -32,6 +32,7 @@ mozconfig_init() { declare EM=$([[ ${PN} == enigmail ]] && echo true || echo false) declare XUL=$([[ ${PN} == *xulrunner ]] && echo true || echo false) declare SM=$([[ ${PN} == seamonkey ]] && echo true || echo false) + declare IC=$([[ ${PN} == *icecat ]] && echo true || echo false) #################################### # @@ -69,6 +70,9 @@ mozconfig_init() { : >.mozconfig || die "initial mozconfig creation failed" mozconfig_annotate "" --enable-application=suite mozconfig_annotate "" --enable-extensions=default ;; + *icecat) + cp browser/config/mozconfig .mozconfig \ + || die "cp browser/config/mozconfig failed" ;; esac #################################### |