summaryrefslogtreecommitdiffstats
path: root/www/mozilla
diff options
context:
space:
mode:
authoradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-30 04:30:06 +0800
committeradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-30 04:30:06 +0800
commit7aafae0ca0074948f883d7812a4bc9a37210a0b6 (patch)
tree457a146ee516f3285aaf97e8aa414266b710c78c /www/mozilla
parentb2a1ee44bf12f0b440b544ae80e95fc1a8927175 (diff)
downloadmarcuscom-ports-7aafae0ca0074948f883d7812a4bc9a37210a0b6.tar
marcuscom-ports-7aafae0ca0074948f883d7812a4bc9a37210a0b6.tar.gz
marcuscom-ports-7aafae0ca0074948f883d7812a4bc9a37210a0b6.tar.bz2
marcuscom-ports-7aafae0ca0074948f883d7812a4bc9a37210a0b6.tar.lz
marcuscom-ports-7aafae0ca0074948f883d7812a4bc9a37210a0b6.tar.xz
marcuscom-ports-7aafae0ca0074948f883d7812a4bc9a37210a0b6.tar.zst
marcuscom-ports-7aafae0ca0074948f883d7812a4bc9a37210a0b6.zip
Tweak comments and strings for readability, grammar, and to make it a
little easier when porters start referencing the comments at the head. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5242 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/mozilla')
-rw-r--r--www/mozilla/bsd.gecko.mk57
1 files changed, 38 insertions, 19 deletions
diff --git a/www/mozilla/bsd.gecko.mk b/www/mozilla/bsd.gecko.mk
index 84de214e9..b1e5e78a9 100644
--- a/www/mozilla/bsd.gecko.mk
+++ b/www/mozilla/bsd.gecko.mk
@@ -2,10 +2,16 @@
# ex:ts=4
#
# $FreeBSD$
-# $MCom: ports/www/mozilla/bsd.gecko.mk,v 1.7 2005/11/28 18:07:33 ahze Exp $
+# $MCom: ports/www/mozilla/bsd.gecko.mk,v 1.8 2005/11/29 08:39:05 ahze Exp $
#
# 4 column tabs prevent hair loss and tooth decay!
+# bsd.gecko.mk abstracts the selection of gecko-based backends. It allows users
+# and porters to support any available gecko backend without needing to build
+# many conditional tests. ${USE_GECKO} is the list of backends that your port
+# can handle, and ${GECKO} is set by bsd.gecko.mk to be the chosen backend.
+# Users set ${WITH_GECKO} to the list of gecko backends they want on their system.
+
.if defined(USE_GECKO)
#.if defined(_POSTMKINCLUDED) && !defined(Gecko_Pre_Include)
@@ -14,27 +20,39 @@
Gecko_Include_MAINTAINER= gnome@FreeBSD.org
Gecko_Pre_Include= bsd.gecko.mk
-# Ports can use the following:
+
+# Users should use the following syntax:
+#
+# WITH_GECKO= mozilla firefox seamonkey
+# Use mozilla whenever a port supports it, falling back on firefox and
+# then seamonkey.
+# WITH_GECKO= firefox
+# Sets your preferred backend. With this example, firefox will always
+# be chosen, unless the port doesn't support a firefox backend. In that
+# case, you get whatever the porter chose as the default. Better to use
+# the first example.
+#
+#
+# Ports shoud use the following:
#
-# USE_GECKO= mozilla firefox seamonkey ....
-# List of gecko's the port supports. The first entry will
-# be the default gecko to use unless WITH_GECKO is defined
-# then bsd.gecko.mk will test if the listed entries in
-# WITH_GECKO and match ones in USE_GECKO, the first match found
-# will be the gecko used by the port. Also, GECKO will be returned
-# with the gecko it will be using.
+# USE_GECKO= mozilla firefox seamonkey
+# The list of gecko backends that the port supports. Unless the user
+# overrides it with WITH_GECKO, the first gecko listed in USE_GECKO
+# will be the default. In the above example, www/mozilla will be used
+# as a gecko backend unless WITH_GECKO=firefox or WITH_GECKO=seamonkey
+# is defined by the user.
+#
+# Your port should check the ${GECKO} variable to see which backend
+# has been chosen.
#
# Example:
+# USE_GECKO= mozilla firefox seamonkey
# post-patch:
# .if ${GECKO}=="seamonkey"
# @${REINPALCE_CMD} -e 's|mozilla-|seamonkey-|' \
# ${WRKSRC}/configure
# .endif
-#
-# End users can use the following example:
-#
-# WITH_GECKO= mozilla firefox seamonkey
-#
+
_GECKO_ALL= firefox mozilla nvu seamonkey sunbird thunderbird
@@ -106,7 +124,7 @@ XPIDL_INCL?= `${GECKO_CONFIG} --idlflags`
BUILD_DEPENDS+= ${${GECKO}_PLIST}:${${GECKO}_DEPENDS}
RUN_DEPENDS+= ${${GECKO}_PLIST}:${${GECKO}_DEPENDS}
.else
-BROKEN="Bad use of USE_GECKO"
+BROKEN="Incorrect use of USE_GECKO"
.endif
pre-everything:: _gecko-pre-everything
@@ -115,12 +133,13 @@ _gecko-pre-everything::
@${ECHO_CMD} ""
.if !defined(_FOUND_WITH_GECKO) && defined(WITH_GECKO)
@${ECHO_CMD} " Warning: ${PORTNAME} does not support any gecko you"
- @${ECHO_CMD} " listed in WITH_GECKO=${WITH_GECKO}. ${GECKO} will be used"
- @${ECHO_CMD} " for gecko support, but you can change by using one of"
+ @${ECHO_CMD} " listed in WITH_GECKO=${WITH_GECKO}."
+ @${ECHO_CMD} " \"${GECKO}\" will be used"
+ @${ECHO_CMD} " for gecko support, but you can change that by using one of"
@${ECHO_CMD} " the following values:"
.else
- @${ECHO_CMD} " ${PORTNAME} is using ${GECKO} for gecko support but you can"
- @${ECHO_CMD} " change by defining WITH_GECKO to the following values:"
+ @${ECHO_CMD} " ${PORTNAME} is using ${GECKO} for gecko support, but you can"
+ @${ECHO_CMD} " change that by defining WITH_GECKO to the following values:"
.endif
@${ECHO_CMD} ""
.for gecko in ${GOOD_USE_GECKO}