summaryrefslogtreecommitdiffstats
path: root/Mk/bsd.mozilla.mk
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-13 13:35:10 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-13 13:35:10 +0800
commit4720dc605f14d9141a9061f7214feb2a94a8964e (patch)
tree857544fa44700947b62f2b12ab22e74b5c22eb0a /Mk/bsd.mozilla.mk
parentf01270bf9b48cd66f4b2068776556d170cb87945 (diff)
downloadmarcuscom-ports-4720dc605f14d9141a9061f7214feb2a94a8964e.tar
marcuscom-ports-4720dc605f14d9141a9061f7214feb2a94a8964e.tar.gz
marcuscom-ports-4720dc605f14d9141a9061f7214feb2a94a8964e.tar.bz2
marcuscom-ports-4720dc605f14d9141a9061f7214feb2a94a8964e.tar.lz
marcuscom-ports-4720dc605f14d9141a9061f7214feb2a94a8964e.tar.xz
marcuscom-ports-4720dc605f14d9141a9061f7214feb2a94a8964e.tar.zst
marcuscom-ports-4720dc605f14d9141a9061f7214feb2a94a8964e.zip
- Fix another line with missing {
- add thunderbird sunbird and nvu in the mix (thunderbird and nvu are supported by many ports by default with no patching) - Add USE_GCC=3.4+ for gecko's that need it. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5118 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'Mk/bsd.mozilla.mk')
-rw-r--r--Mk/bsd.mozilla.mk16
1 files changed, 12 insertions, 4 deletions
diff --git a/Mk/bsd.mozilla.mk b/Mk/bsd.mozilla.mk
index ef07e8c74..d35e6e9f3 100644
--- a/Mk/bsd.mozilla.mk
+++ b/Mk/bsd.mozilla.mk
@@ -39,12 +39,17 @@ Mozilla_Pre_Include= bsd.mozilla.mk
# WITH_MOZILLA= mozilla firefox seamonkey
#
-_GECKO_ALL= firefox firefox-devel mozilla mozilla-devel seamonkey
+_GECKO_ALL= firefox firefox-devel mozilla mozilla-devel nvu \
+ seamonkey sunbird thunderbird
+
+_NEW_GCC_GECKO= firefox firefox-devel mozilla-devel seamonkey sunbird
+
+sunbird_PORTSDIR= deskutils
+thunderbird_PORTSDIR= mail
-# defines
.for gecko in ${_GECKO_ALL}
-${gecko}_PORTDIR?= www
-${gecko}_DEPENDS?= ${PORTSDIR}/${gecko_PORTSDIR}/${gecko}
+${gecko}_PORTSDIR?= www
+${gecko}_DEPENDS?= ${PORTSDIR}/${${gecko}_PORTSDIR}/${gecko}
${gecko}_PLIST?= ${X11BASE}/lib/${gecko}/libgtkembedmoz.so
.endfor
@@ -73,6 +78,9 @@ MOZILLA= #### CHANGE ME
.endif
.if defined(MOZILLA) && ${_GECKO_ALL:M${MOZILLA}}!=""
+. if ${_NEW_GCC_GECKO:M${MOZILLA}!=""
+USE_GCC?= 3.4+
+. endif
BUILD_DEPENDS+= ${MOZILLA_${PLIST}}:${MOZILLA_${DEPENDS}}
RUN_DEPENDS+= ${MOZILLA_${PLIST}}:${MOZILLA_${DEPENDS}}
.else