eclass/mozcoreconf-v6.eclass: adjust setting for building comm targets
authorIan Stakenvicius <axs@gentoo.org>
Tue, 14 Aug 2018 14:40:22 +0000 (10:40 -0400)
committerIan Stakenvicius <axs@gentoo.org>
Tue, 14 Aug 2018 19:04:50 +0000 (15:04 -0400)
Thunderbird and Seamonkey from v60 onwards are now built from the 'comm/mail'
and 'comm/suite' application targets respectively, instead of the old
'mail' and 'suite'.  This change is not backwards compatible with mozilla
versions prior to v60.

eclass/mozcoreconf-v6.eclass

index 64e0e3d66d33cbe82ad6c1a5858e838f734b8b76..403740c12410736fd83d20a5618ce5c407661a40 100644 (file)
@@ -142,11 +142,13 @@ mozconfig_init() {
                seamonkey)
                        # Must create the initial mozconfig to enable application
                        : >.mozconfig || die "initial mozconfig creation failed"
-                       mozconfig_annotate "" --enable-application=suite ;;
+                       # NOTE--this is not compatible with mozilla prior to v60
+                       mozconfig_annotate "" --enable-application=comm/suite ;;
                *thunderbird)
                        # Must create the initial mozconfig to enable application
                        : >.mozconfig || die "initial mozconfig creation failed"
-                       mozconfig_annotate "" --enable-application=mail ;;
+                       # NOTE--this is not compatible with mozilla prior to v60
+                       mozconfig_annotate "" --enable-application=comm/mail ;;
        esac
 
        ####################################