diff options
author | Jory Pratt <anarchy@gentoo.org> | 2006-06-01 21:56:31 +0000 |
---|---|---|
committer | Jory Pratt <anarchy@gentoo.org> | 2006-06-01 21:56:31 +0000 |
commit | 65d77be98e9b98281799501f127c93456722de90 (patch) | |
tree | e451a947b241eecc081d48be017bce2cde2cd5aa /eclass | |
parent | purge security vulnerable versions (diff) | |
download | historical-65d77be98e9b98281799501f127c93456722de90.tar.gz historical-65d77be98e9b98281799501f127c93456722de90.tar.bz2 historical-65d77be98e9b98281799501f127c93456722de90.zip |
xulrunner support
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozcoreconf.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/mozcoreconf.eclass b/eclass/mozcoreconf.eclass index 727025ada135..09ea670092d8 100644 --- a/eclass/mozcoreconf.eclass +++ b/eclass/mozcoreconf.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf.eclass,v 1.7 2006/03/25 16:42:04 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf.eclass,v 1.8 2006/06/01 21:56:31 anarchy Exp $ # # mozcoreconf.eclass : core options for mozilla # inherit mozconfig-2 if you need USE flags @@ -31,6 +31,7 @@ mozconfig_init() { declare TB=$([[ ${PN} == *thunderbird ]] && echo true || echo false) declare SB=$([[ ${PN} == *sunbird ]] && echo true || echo false) declare EM=$([[ ${PN} == enigmail ]] && echo true || echo false) + declare XUL=$([[ ${PN} == *xulrunner ]] && echo true || echo false) declare SM=$([[ ${PN} == seamonkey ]] && echo true || echo false) #################################### @@ -53,6 +54,9 @@ mozconfig_init() { enigmail) cp mail/config/mozconfig .mozconfig \ || die "cp mail/config/mozconfig failed" ;; + *xulrunner) + cp xulrunner/config/mozconfig .mozconfig \ + || die "cp xulrunner/config/mozconfig failed" ;; *sunbird) cp calendar/sunbird/config/mozconfig .mozconfig \ || die "cp calendar/sunbird/config/mozconfig failed" ;; |