36353c589f
- Add Makefile.common o A new build/install system for gecko ports, Makefile.common includes many generic routines and common tasks. o Fix ld-run-path in all gecko's by using -Wl,-rpath,${moz_libdir} thus removing the need to have a startup script for ports that depend on gecko. [2] o Use system libm, nss, nspr in all gecko ports - Add bsd.gecko.mk o This is the predecessor to WITH_MOZILLA=[mozilla|firefox|...] with a more robust way of detecting a gecko a end user wishs to use. o 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. Port Makefile example: USE_GECKO=firefox mozilla seamonkey thunderbird .include <bsd.port.pre.mk> .include "${.CURDIR}/../../www/mozilla/bsd.gecko.mk" End user example: WITH_GECKO=seamonkey firefox We highly recommend moving away from using WITH_MOZILLA and switching to USE/WITH_GECKO. PR: 89052 [2] Submitted by: vs [2] Obtained from: www/firefox Thanks to: adamw, marcus, and mezz for ideas, bug squashing, and more sajd from irc.freenode.org/#FreeBSD-Gnome for pointing out many bugs
79 lines
2.7 KiB
Makefile
79 lines
2.7 KiB
Makefile
# New ports collection makefile for: mozilla-thunderbird
|
|
# Date created: 4 September 2003
|
|
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/mail/thunderbird/Makefile,v 1.13 2005/11/24 01:43:41 ahze Exp $
|
|
#
|
|
|
|
PORTNAME= thunderbird
|
|
PORTVERSION= 1.0.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTVERSION}/source
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-source
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Mozilla Thunderbird is standalone mail and news that stands above
|
|
|
|
WANT_GNOME= yes
|
|
ALL_TARGET= default
|
|
CONFIGURE_ENV= LOCALBASE=${LOCALBASE}
|
|
HAS_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
|
|
MOZ_EXTENSIONS= wallet,spellcheck,xmlextras,webservices
|
|
MOZ_PROTOCOLS= http,file,jar,viewsource,res,data
|
|
MOZ_GRAPHICS= default,-xbm
|
|
MOZ_OPTIONS= --enable-single-profile --disable-profilesharing \
|
|
--enable-official-branding
|
|
MOZ_EXPORT= MOZ_THUNDERBIRD=1
|
|
MOZ_MK_OPTIONS= MOZ_MOZ_THUNDERBIRD=1
|
|
|
|
PORTNAME_ICON= ${PREFIX}/lib/${PORTNAME}/chrome/icons/default/default.xpm
|
|
SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}-${PORTVERSION}/defaults/pref/${PORTNAME}.js
|
|
MOZ_PIS_SCRIPTS=moz_pis_S50cleanhome
|
|
|
|
CONFLICTS= thunerbird*-1.5*
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${.CURDIR}/../../www/mozilla/Makefile.common"
|
|
|
|
.if ${ARCH} == "alpha" && ${OSVERSION} < 500035
|
|
IGNORE= core dumps at runtime
|
|
.endif # ${ARCH} == "alpha" && ${OSVERSION} < 500035
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-config_make-jars.pl
|
|
.endif # ${PERL_LEVEL} < 500600
|
|
|
|
post-extract::
|
|
@${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON}|' \
|
|
<${FILESDIR}/${PORTNAME}.desktop.in >${WRKDIR}/${PORTNAME}.desktop
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g' \
|
|
-e 's|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \
|
|
${WRKSRC}/xpcom/*/SpecialSystemDirectory.cpp
|
|
@${FIND} ${WRKSRC} -name all.js | ${XARGS} ${REINPLACE_CMD} -e \
|
|
'/accessibility.typeaheadfind.enablesound/s/true/false/ ; \
|
|
/dom.disable_window_open_feature.toolbar/s/false/true/'
|
|
@${REINPLACE_CMD} -e 's|<iconv.h>|\"${LOCALBASE}/include/iconv.h\"|g' \
|
|
${WRKSRC}/configure \
|
|
${WRKSRC}/intl/uconv/native/nsNativeUConvService.cpp \
|
|
${WRKSRC}/xpcom/io/nsNativeCharsetUtils.cpp
|
|
|
|
pre-install:
|
|
${ECHO_CMD} 'share/applications/${PORTNAME}.desktop' >> ${PLIST}
|
|
${ECHO_CMD} "@unexec ${RMDIR} %D/share/applications 2>/dev/null || ${TRUE}" >> ${PLIST}
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/share/applications
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${PREFIX}/share/applications
|
|
${INSTALL_DATA} ${WRKSRC}/other-licenses/branding/${PORTNAME}/default.xpm \
|
|
${PREFIX}/lib/${PORTNAME}/chrome/icons/default/default.xpm
|
|
|
|
.include <bsd.port.post.mk>
|