diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-10 18:09:13 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-10 18:10:38 +0100 |
commit | d6e84e125b331e14ba081000b6f52052c56bddb3 (patch) | |
tree | 5a3eac9b90c853b2fa2cf181b425c9498007994d /eclass | |
parent | sys-kernel/gentoo-sources: Linux version bumps (diff) | |
download | gentoo-d6e84e125b331e14ba081000b6f52052c56bddb3.tar.gz gentoo-d6e84e125b331e14ba081000b6f52052c56bddb3.tar.bz2 gentoo-d6e84e125b331e14ba081000b6f52052c56bddb3.zip |
mozcoreconf-v?.eclass: Added waterfox support
Acked-by: Thomas Deutschmann <whissi@gentoo.org>
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozcoreconf-v5.eclass | 3 | ||||
-rw-r--r-- | eclass/mozcoreconf-v6.eclass | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/eclass/mozcoreconf-v5.eclass b/eclass/mozcoreconf-v5.eclass index a78b190aff69..008b1b759ccc 100644 --- a/eclass/mozcoreconf-v5.eclass +++ b/eclass/mozcoreconf-v5.eclass @@ -124,6 +124,7 @@ mozconfig_init() { declare FF=$([[ ${PN} == firefox ]] && echo true || echo false) declare SM=$([[ ${PN} == seamonkey ]] && echo true || echo false) declare TB=$([[ ${PN} == thunderbird ]] && echo true || echo false) + declare WF=$([[ ${PN} == waterfox* ]] && echo true || echo false) #################################### # @@ -136,7 +137,7 @@ mozconfig_init() { *xulrunner) cp xulrunner/config/mozconfig .mozconfig \ || die "cp xulrunner/config/mozconfig failed" ;; - *firefox) + *firefox|waterfox*) cp browser/config/mozconfig .mozconfig \ || die "cp browser/config/mozconfig failed" ;; seamonkey) diff --git a/eclass/mozcoreconf-v6.eclass b/eclass/mozcoreconf-v6.eclass index 045aabc164c8..b4f75ae017d1 100644 --- a/eclass/mozcoreconf-v6.eclass +++ b/eclass/mozcoreconf-v6.eclass @@ -122,6 +122,7 @@ mozconfig_init() { declare SM=$([[ ${PN} == seamonkey ]] && echo true || echo false) declare TB=$([[ ${PN} == thunderbird ]] && echo true || echo false) declare TRB=$([[ ${PN} == torbrowser ]] && echo true || echo false) + declare WF=$([[ ${PN} == waterfox* ]] && echo true || echo false) #################################### # @@ -134,7 +135,7 @@ mozconfig_init() { *xulrunner) cp xulrunner/config/mozconfig .mozconfig \ || die "cp xulrunner/config/mozconfig failed" ;; - *firefox) + *firefox|waterfox*) cp browser/config/mozconfig .mozconfig \ || die "cp browser/config/mozconfig failed" ;; *torbrowser) |