diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 11:49:21 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 11:49:21 +0800 |
commit | 5b87170d1daffb445f5e8b403ff43a6b761cbef6 (patch) | |
tree | 48968bfeed404751cfa238a332e709a81be329e6 /www | |
parent | c207f3faf356ddd8990693f5bfbbad6606183139 (diff) | |
download | marcuscom-ports-5b87170d1daffb445f5e8b403ff43a6b761cbef6.tar marcuscom-ports-5b87170d1daffb445f5e8b403ff43a6b761cbef6.tar.gz marcuscom-ports-5b87170d1daffb445f5e8b403ff43a6b761cbef6.tar.bz2 marcuscom-ports-5b87170d1daffb445f5e8b403ff43a6b761cbef6.tar.lz marcuscom-ports-5b87170d1daffb445f5e8b403ff43a6b761cbef6.tar.xz marcuscom-ports-5b87170d1daffb445f5e8b403ff43a6b761cbef6.tar.zst marcuscom-ports-5b87170d1daffb445f5e8b403ff43a6b761cbef6.zip |
- Add lightning
Lightning brings the Sunbird calendar to the popular email client,
Mozilla Thunderbird.
Mozilla Thunderbird is a redesign of the Mozilla mail component with the goal
of becoming a cross-platform stand alone mail application using the XUL
user interface language. See the Mozilla Thunderbird project page for
more details.
The Sunbird Project is a redesign of the Mozilla Calendar component. The goal
is to produce a cross platform standalone calendar application based on
Mozilla's XUL user interface language.
WWW: http://www.mozilla.org/projects/calendar/lightning/
http://www.mozilla.com/thunderbird/
http://www.mozilla.org/projects/calendar/sunbird/
Note: this is thunderbird 2.0a. If you want to keep thunderbird 1.5
try deskutils/lightning-xpi
Thanks to Marcus for Makefile.common target help.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7791 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www')
-rw-r--r-- | www/mozilla/Makefile.common | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common index af89f181c..7ee3cf869 100644 --- a/www/mozilla/Makefile.common +++ b/www/mozilla/Makefile.common @@ -4,7 +4,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/mozilla/Makefile.common,v 1.29 2006/10/12 12:17:26 ahze Exp $ +# $MCom: ports/www/mozilla/Makefile.common,v 1.30 2006/10/13 01:32:05 ahze Exp $ # This file contains some reusable components for mozilla ports. It's of # use primarily to apps from the mozilla project itself (such as Firefox, @@ -328,12 +328,14 @@ gecko-post-build: @${REINPLACE_CMD} -e "s|\(Libs:.*\)\($$\)|\1 -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH}\2|" \ ${WRKSRC}/build/unix/*.pc -pre-install: gecko-pre-install gecko-moz-pis-pre-install gecko-create-plist +pre-install: gecko-moz-pis-pre-install gecko-pre-install port-pre-install gecko-create-plist -gecko-pre-install: - @${DO_NADA} # Empty for now +.if !target(port-pre-install) +port-pre-install: + @${DO_NADA} +.endif -gecko-create-plist: +gecko-pre-install: .if !defined(NOGECKO_PLIST) @${RM} -rf ${FAKEDIR} ${PLIST} @${TOUCH} -f ${PLIST} @@ -355,6 +357,10 @@ gecko-create-plist: ${FAKEDIR}/bin/${MOZILLA} \ ${FAKEDIR}/bin/${MOZILLA}-config ${RM} -f ${FAKEDIR}/bin/*.bak +.endif + +gecko-create-plist: +.if !defined(NOGECKO_PLIST) # Create the plist .for f in ${GECKO_PLIST_PRE_FILES} ${ECHO_CMD} ${f} >> ${PLIST} |