2012-11-21 00:01:15 +01:00
|
|
|
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
2003-09-04 08:31:09 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= thunderbird
|
2013-09-19 00:40:57 +02:00
|
|
|
DISTVERSION= 24.0
|
2006-12-21 09:20:43 +01:00
|
|
|
CATEGORIES= mail ipv6
|
2013-09-19 00:40:57 +02:00
|
|
|
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source
|
|
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}.source${EXTRACT_SUFX}
|
|
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}.source${EXTRACT_SUFX}
|
2003-09-04 08:31:09 +02:00
|
|
|
|
2009-05-04 21:23:44 +02:00
|
|
|
MAINTAINER= gecko@FreeBSD.org
|
2003-09-04 08:31:09 +02:00
|
|
|
COMMENT= Mozilla Thunderbird is standalone mail and news that stands above
|
|
|
|
|
2013-09-19 00:40:57 +02:00
|
|
|
BUILD_DEPENDS= nspr>=4.10:${PORTSDIR}/devel/nspr \
|
|
|
|
nss>=3.15:${PORTSDIR}/security/nss \
|
|
|
|
sqlite3>=3.7.16.1:${PORTSDIR}/databases/sqlite3 \
|
2013-03-03 11:09:08 +01:00
|
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \
|
2011-11-08 18:35:09 +01:00
|
|
|
cairo>=1.10.2_1,1:${PORTSDIR}/graphics/cairo \
|
2013-09-19 00:40:57 +02:00
|
|
|
v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \
|
2011-11-08 18:35:09 +01:00
|
|
|
unzip:${PORTSDIR}/archivers/unzip
|
2013-09-19 00:40:57 +02:00
|
|
|
LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l
|
2010-08-03 22:55:29 +02:00
|
|
|
|
2013-09-19 00:40:57 +02:00
|
|
|
EM_VERSION= 1.5.2
|
|
|
|
L_VERSION= 2.6b3
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
|
2012-07-26 23:49:58 +02:00
|
|
|
USE_AUTOTOOLS= autoconf213:env
|
2012-11-21 00:01:15 +01:00
|
|
|
USE_PYTHON_BUILD=-2.7
|
2013-09-19 00:40:57 +02:00
|
|
|
OBJDIR_BUILD= # in-tree build broken after bug 789837
|
2010-08-03 22:55:29 +02:00
|
|
|
USE_GECKO= gecko
|
2012-07-26 23:49:58 +02:00
|
|
|
USE_MOZILLA= # empty
|
2010-08-03 22:55:29 +02:00
|
|
|
|
- Update firefox to 1.5
- 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
2005-11-29 22:12:28 +01:00
|
|
|
WANT_GNOME= yes
|
2012-07-26 23:49:58 +02:00
|
|
|
USE_QT4= # empty
|
|
|
|
QT_NONSTANDARD= yes
|
- Repo copy a lot of changes from www/firefox/Makefile. The best part is that
before it would install in the strange place like this.
${X11BASE}/lib/thunderbird/include/thunderbird-1.0.6
Now it will install in the correct place like firefox:
${X11BASE}/include/thunderbird
Also, get *.pc and idl files install.
- Didn't copy following from www/firefox/Makefile:
* plugins stuff, because it's known cause the stability problem like
crash.
* EXTRA_SCRIPTS=${PORTNAME}.rb, thunderbird doesn't need it.
- Make portlint happier.
- Add Java 5 plugins support. [1]
- Use system's libm (/usr/src/lib/msun), nss, nspr and etc. Also, do
not extract those. Better explain, use external dependencies. [1]
- Teach firefox-config and *.pc files for nspr that will making other
third apps to buildable like epiphany, vlc-devel's mozilla plugins
and etc. Have been tested with full GNOME 2.11.x build too.
- Add four patches: [1]
patch-bugzilla243151:
https://bugzilla.mozilla.org/show_bug.cgi?id=243151
patch-jsosdep:
Fix the FreeBSD define
patch-oji-threads:
64-bit wide pthread_t
patch-xptcinvoke_x86_64_linux:
Setting a possibly uninitialized variable (value).
- Fix a crash that can occur using gtk+-2.7 and possibly 2.6.10 when closing
windows. https://bugzilla.mozilla.org/show_bug.cgi?id=3002 [2]
- Get rid of FIREFOX and FF_VER, best to use PORTNAME and PORTVERSION
varibles that are arleady exist and lesser complicate.
- Change all hardcore of 'thunderbird' to PORTNAME.
- Change a manual loop for patch all.js to find(1), so we can sleep
on it.
Submitted by: mi [1], marcus [2]
Reviewed by: my team, FreeBSD GNOME Team.
2005-08-28 10:00:00 +02:00
|
|
|
ALL_TARGET= default
|
|
|
|
USE_BZIP2= yes
|
2011-06-30 20:19:48 +02:00
|
|
|
USE_GL= gl
|
2013-09-19 00:40:57 +02:00
|
|
|
USE_DOS2UNIX= mozilla/media/webrtc/trunk/webrtc/system_wrappers/source/spreadsortlib/spreadsort.hpp
|
2003-09-04 08:31:09 +02:00
|
|
|
|
2011-08-16 20:23:05 +02:00
|
|
|
MOZ_PROTOCOLS= http,ftp,file,viewsource,res,data,wyciwyg,websocket
|
2011-08-18 12:01:59 +02:00
|
|
|
MOZ_OPTIONS= --program-transform-name='s/thunderbird/${MOZILLA}/' \
|
2010-08-03 22:55:29 +02:00
|
|
|
--enable-single-profile --disable-profilesharing \
|
2012-07-26 23:49:58 +02:00
|
|
|
--enable-application=mail --enable-official-branding
|
2010-08-03 22:55:29 +02:00
|
|
|
MOZ_MK_OPTIONS= MOZ_MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1
|
|
|
|
MOZ_EXPORT= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1
|
|
|
|
MOZ_PKGCONFIG_FILES=
|
|
|
|
|
2011-08-18 12:01:59 +02:00
|
|
|
PORTNAME_ICON= ${MOZILLA}.png
|
2010-08-03 22:55:29 +02:00
|
|
|
PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png
|
|
|
|
|
|
|
|
SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js
|
2006-01-12 06:54:32 +01:00
|
|
|
MOZ_PIS_SCRIPTS=moz_pis_S50cleanhome
|
2006-01-08 20:44:30 +01:00
|
|
|
|
2013-05-16 04:00:38 +02:00
|
|
|
OPTIONS_DEFINE= ENIGMAIL LIGHTNING
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
OPTIONS_DEFAULT=ENIGMAIL LIGHTNING
|
2006-02-01 18:42:43 +01:00
|
|
|
|
2013-09-19 00:40:57 +02:00
|
|
|
# non-client.mk objdir build broken after bug 846540
|
|
|
|
.undef GNU_CONFIGURE
|
|
|
|
ALL_TARGET= build
|
|
|
|
MAKEFILE= ${WRKSRC}/client.mk
|
|
|
|
|
2013-09-20 21:59:12 +02:00
|
|
|
NO_STAGE= yes
|
2012-07-26 23:49:58 +02:00
|
|
|
.include "${.CURDIR}/../../www/firefox/Makefile.options"
|
2013-05-16 04:00:38 +02:00
|
|
|
|
2013-09-19 00:40:57 +02:00
|
|
|
# OSS is gone after bug 852401
|
|
|
|
OPTIONS_SINGLE_AUDIO:=${OPTIONS_SINGLE_AUDIO:S/OSS//}
|
2013-05-16 04:00:38 +02:00
|
|
|
|
2003-09-04 08:31:09 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2013-09-19 00:40:57 +02:00
|
|
|
WRKSRC= ${WRKDIR}/comm-esr24
|
2010-08-03 22:55:29 +02:00
|
|
|
MOZSRC:= ${WRKSRC}/mozilla
|
|
|
|
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
XPI_LIBDIR= ${PREFIX}/lib/xpi
|
|
|
|
|
2013-09-19 00:40:57 +02:00
|
|
|
# libprldap60.so: Undefined symbol "PR_GetCurrentThread"
|
|
|
|
.if ${ARCH} == i386
|
|
|
|
USE_GCC?= yes
|
|
|
|
.endif
|
|
|
|
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
.if ${PORT_OPTIONS:MENIGMAIL}
|
2013-09-19 00:40:57 +02:00
|
|
|
MASTER_SITES+= https://www.enigmail.net/download/source/:enigmail
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
DISTFILES+= ${EM_DISTFILE}:enigmail
|
|
|
|
RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg
|
|
|
|
EM_DISTNAME= enigmail-${EM_VERSION}
|
|
|
|
EM_DISTFILE= ${EM_DISTNAME}.tar.gz
|
2013-08-11 01:34:16 +02:00
|
|
|
EM_XPI_FILE= ${MOZ_OBJDIR}/mozilla/dist/bin/${EM_DISTNAME}-${OPSYS:L}-${ARCH:S/amd64/x86_64/}.xpi
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
EM_ORIG_ID= {847b3a00-7ab1-11d4-8f02-006008948af5}
|
|
|
|
EM_ID= ${PORTNAME}@mozilla-enigmail.org
|
|
|
|
EM_ID_RFILES= ${XPI_LIBDIR}/${EM_ID}/install.rdf \
|
|
|
|
${XPI_LIBDIR}/${EM_ID}/components/enigmail.js \
|
|
|
|
${XPI_LIBDIR}/${EM_ID}/modules/enigmailCommon.jsm
|
2013-02-20 00:53:07 +01:00
|
|
|
EXTRA_PATCHES+= ${FILESDIR}/extrapatch-enigmail-ipc-src-Makefile
|
2013-09-19 00:40:57 +02:00
|
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-bug886095
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
.endif
|
|
|
|
|
2012-07-26 23:49:58 +02:00
|
|
|
.if ${PORT_OPTIONS:MLIGHTNING}
|
2011-07-04 23:27:06 +02:00
|
|
|
MOZ_OPTIONS+= --enable-calendar
|
2011-10-19 17:05:41 +02:00
|
|
|
MOZ_MK_OPTIONS+= MOZ_CO_PROJECT=calendar
|
2011-07-04 23:27:06 +02:00
|
|
|
LIGHTNING_DIR= share/lightning
|
2013-09-19 00:40:57 +02:00
|
|
|
XPI_FILE= ${MOZ_OBJDIR}/mozilla/dist/xpi-stage/lightning-${L_VERSION}.en-US.${OPSYS:L}${OSREL}-${ARCH:S/amd64/x86_64/}.xpi
|
2011-10-19 17:05:41 +02:00
|
|
|
XPI_ORIG_ID= {e2fda1a4-762b-4020-b5ad-a41df1933103}
|
|
|
|
XPI_ID= lightning@thunderbird.mozilla.org
|
2011-07-04 23:27:06 +02:00
|
|
|
.else
|
|
|
|
MOZ_OPTIONS+= --disable-calendar
|
|
|
|
.endif
|
|
|
|
|
2011-08-16 20:23:05 +02:00
|
|
|
post-extract:
|
2011-08-18 12:01:59 +02:00
|
|
|
@${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON}|;s|@MOZILLA@|${MOZILLA}|' \
|
2010-08-03 22:55:29 +02:00
|
|
|
<${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
.if ${PORT_OPTIONS:MENIGMAIL}
|
|
|
|
@${TAR} -xf ${_DISTDIR}/${EM_DISTFILE} \
|
|
|
|
-C ${WRKSRC}/mailnews/extensions
|
|
|
|
.endif
|
2003-09-04 08:31:09 +02:00
|
|
|
|
|
|
|
post-patch:
|
2013-09-19 00:40:57 +02:00
|
|
|
@${REINPLACE_CMD} -e '/MOZPNG/s/=[0-9]*/=10511/' \
|
|
|
|
${MOZSRC}/configure.in ${WRKSRC}/configure.in
|
2012-07-26 23:49:58 +02:00
|
|
|
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
|
|
${WRKSRC}/mail/app/nsMailApp.cpp
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
.if ${PORT_OPTIONS:MENIGMAIL}
|
|
|
|
@${REINPLACE_CMD} -e 's,/usr/bin/perl,${PERL},' \
|
|
|
|
${WRKSRC}/mailnews/extensions/enigmail/makemake
|
|
|
|
@${REINPLACE_CMD} -e '/^xpi/s/$$/ all/' \
|
|
|
|
-e '/^XPI_MODULE_VERS/s/= .*/= ${EM_VERSION}/' \
|
|
|
|
${WRKSRC}/mailnews/extensions/enigmail/Makefile.in
|
|
|
|
@${REINPLACE_CMD} -e '/em:version/s,>[^<]*<,>${EM_VERSION}<,' \
|
|
|
|
-e '/em:maxVersion/s/pre//' \
|
|
|
|
${WRKSRC}/mailnews/extensions/enigmail/package/install.rdf
|
|
|
|
.endif
|
2010-08-03 22:55:29 +02:00
|
|
|
|
|
|
|
pre-configure:
|
|
|
|
(cd ${WRKSRC} && ${AUTOCONF})
|
|
|
|
(cd ${MOZSRC} && ${AUTOCONF})
|
|
|
|
(cd ${MOZSRC}/js/src/ && ${AUTOCONF})
|
2003-09-04 08:31:09 +02:00
|
|
|
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
.if ${PORT_OPTIONS:MENIGMAIL}
|
|
|
|
post-build:
|
|
|
|
cd ${WRKSRC}/mailnews/extensions/enigmail && \
|
|
|
|
./makemake -r -o ${MOZ_OBJDIR}
|
|
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${_MAKE_JOBS} all xpi \
|
|
|
|
-C ${MOZ_OBJDIR}/mailnews/extensions/enigmail
|
|
|
|
.endif
|
|
|
|
|
2006-12-20 22:37:43 +01:00
|
|
|
port-pre-install:
|
2005-12-03 22:09:56 +01:00
|
|
|
${MKDIR} ${FAKEDIR}/lib/${PORTNAME}/defaults
|
2006-12-20 22:37:43 +01:00
|
|
|
|
|
|
|
pre-install:
|
2006-01-12 06:54:32 +01:00
|
|
|
@${ECHO_CMD} 'share/applications/${PORTNAME}.desktop' >> ${PLIST}
|
2010-08-03 22:55:29 +02:00
|
|
|
@${ECHO_CMD} 'share/pixmaps/${PORTNAME_ICON}' >> ${PLIST}
|
2006-12-20 22:37:43 +01:00
|
|
|
@${ECHO_CMD} '@dirrmtry share/applications' >> ${PLIST}
|
2003-09-04 08:31:09 +02:00
|
|
|
|
2003-12-08 00:22:17 +01:00
|
|
|
post-install:
|
2005-04-26 21:30:55 +02:00
|
|
|
${MKDIR} ${PREFIX}/share/applications
|
2010-08-03 22:55:29 +02:00
|
|
|
${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${PREFIX}/share/applications
|
|
|
|
${LN} -sf ${PORTNAME_ICON_SRC} ${PREFIX}/share/pixmaps/${PORTNAME_ICON}
|
2012-07-26 23:49:58 +02:00
|
|
|
.if ${PORT_OPTIONS:MLIGHTNING}
|
2011-10-19 17:05:41 +02:00
|
|
|
@${MKDIR} ${XPI_LIBDIR}/${XPI_ID} ${XPI_LIBDIR}/symlinks/thunderbird
|
|
|
|
@(cd ${XPI_LIBDIR}/${XPI_ID}; ${TAR} -xf ${XPI_FILE})
|
|
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${XPI_LIBDIR}/${XPI_ID}
|
|
|
|
@${REINPLACE_CMD} -i "" "s/${XPI_ORIG_ID}/${XPI_ID}/" ${XPI_LIBDIR}/${XPI_ID}/install.rdf
|
|
|
|
@${CHMOD} -R a+rX,go-w ${XPI_LIBDIR}/${XPI_ID}
|
|
|
|
@${LN} -sf ${XPI_LIBDIR}/${XPI_ID} ${LOCALBASE}/lib/thunderbird/extensions 2>/dev/null || true
|
|
|
|
@${LN} -sf ${XPI_LIBDIR}/${XPI_ID} ${XPI_LIBDIR}/symlinks/thunderbird 2>/dev/null || true
|
|
|
|
@(cd ${XPI_LIBDIR}; ${FIND} ${XPI_ID} -not -type d) | ${SORT} | \
|
|
|
|
${SED} -ne 's,^,lib/xpi/,p' >> ${TMPPLIST}
|
|
|
|
@${ECHO_CMD} 'lib/xpi/symlinks/thunderbird/${XPI_ID}' >> ${TMPPLIST}
|
|
|
|
@${ECHO_CMD} '@exec ${LN} -sf %D/lib/xpi/${XPI_ID} ${LOCALBASE}/lib/thunderbird/extensions 2>/dev/null || true' >> ${TMPPLIST}
|
|
|
|
@${ECHO_CMD} '@unexec ${RM} -f ${LOCALBASE}/lib/thunderbird/extensions/${XPI_ID}' >> ${TMPPLIST}
|
|
|
|
@(cd ${XPI_LIBDIR}; ${FIND} ${XPI_ID} -type d) | ${SORT} -r | \
|
|
|
|
${SED} -ne 's,^,@dirrm lib/xpi/,p' >> ${TMPPLIST}
|
- Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8
- Update firefox and thunderbird to 16.0
- Update seamonkey to 2.13
- Update all -i18n ports respectively
- switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better
latency during pause and seeking with HTML5 video
- remove fedisableexcept() hacks, obsolete since FreeBSD 4.0
- support system hunspell dictionaries [1]
- unbreak -esr ports with clang3.2 [2]
- unbreak nss build when CC contains full path [3]
- remove GNOME option grouping [4]
- integrate enigmail into thunderbird/seamonkey as an option [5]
- remove mail/enigmail* [6]
- enable ENIGMAIL, LIGHTNING and GIO options by default
- add more reporters in about:memory: page-faults-hard, page-faults-soft,
resident, vsize
- use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0,
only heap-allocated reporter works in about:memory (see bug 762445)
- use lrintf() instead of slow C cast in bundled libopus
- use libjpeg-turbo's faster color conversion if available during build
- record startup time for telemetry
- use -z origin instead of hardcoding path to gecko runtime
- fail early if incompatible libxul version is installed (in USE_GECKO)
- *miscellaneous cleanups and fixups*
PR: ports/171534 [1]
PR: ports/171566 [2]
PR: ports/172164 [3]
PR: ports/172201 [4]
Discussed with: ale, beat, Jan Beich [5]
Approved by: ale [6]
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Feature safe: yes
Approved by: portmgr (beat)
2012-10-10 23:13:06 +02:00
|
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MENIGMAIL}
|
|
|
|
@${MKDIR} ${XPI_LIBDIR}/${EM_ID} ${XPI_LIBDIR}/symlinks/${PORTNAME}
|
|
|
|
@(cd ${XPI_LIBDIR}/${EM_ID}; ${TAR} -xf ${EM_XPI_FILE})
|
|
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${XPI_LIBDIR}/${EM_ID}
|
|
|
|
@${REINPLACE_CMD} -i "" "s/${EM_ORIG_ID}/${EM_ID}/" ${EM_ID_RFILES}
|
|
|
|
@${CHMOD} -R a+rX,go-w ${XPI_LIBDIR}/${EM_ID}
|
|
|
|
@${LN} -sf ${XPI_LIBDIR}/${EM_ID} ${LOCALBASE}/lib/${PORTNAME}/extensions 2>/dev/null || true
|
|
|
|
@${LN} -sf ${XPI_LIBDIR}/${EM_ID} ${XPI_LIBDIR}/symlinks/${PORTNAME} 2>/dev/null || true
|
|
|
|
@(cd ${XPI_LIBDIR}; ${FIND} ${EM_ID} -not -type d) | ${SORT} | \
|
|
|
|
${SED} -ne 's,^,lib/xpi/,p' >> ${TMPPLIST}
|
|
|
|
@${ECHO_CMD} 'lib/xpi/symlinks/${PORTNAME}/${EM_ID}' >> ${TMPPLIST}
|
|
|
|
@${ECHO_CMD} '@exec ${LN} -sf %D/lib/xpi/${EM_ID} ${LOCALBASE}/lib/${PORTNAME}/extensions 2>/dev/null || true' >> ${TMPPLIST}
|
|
|
|
@${ECHO_CMD} '@unexec ${RM} -f ${LOCALBASE}/lib/${PORTNAME}/extensions/${EM_ID}' >> ${TMPPLIST}
|
|
|
|
@(cd ${XPI_LIBDIR}; ${FIND} ${EM_ID} -type d) | ${SORT} -r | \
|
|
|
|
${SED} -ne 's,^,@dirrm lib/xpi/,p' >> ${TMPPLIST}
|
|
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLIGHTNING} || ${PORT_OPTIONS:MENIGMAIL}
|
|
|
|
@${ECHO_CMD} '@unexec rmdir %D/lib/xpi/symlinks/${PORTNAME} 2>/dev/null || true' >> ${TMPPLIST}
|
2011-10-19 17:05:41 +02:00
|
|
|
@${ECHO_CMD} '@unexec rmdir %D/lib/xpi/symlinks 2>/dev/null || true' >> ${TMPPLIST}
|
|
|
|
@${ECHO_CMD} '@unexec rmdir %D/lib/xpi 2>/dev/null || true' >> ${TMPPLIST}
|
2011-07-04 23:27:06 +02:00
|
|
|
.endif
|
2003-09-04 08:31:09 +02:00
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|