9aafe503d0
- Update seamonkey to 2.14 - Update ESR ports and libxul to 10.0.11 - support more h264 codecs when using GSTREAMER with YouTube - Unbreak firefox-esr, thunderbird-esr and libxul on head >= 1000024 [1] - Buildsystem is not python 3 aware, use python up to 2.7 [2] PR: ports/173679 [1] Submitted by: swills [1], demon [2] In collaboration with: Jan Beich <jbeich@tormail.org> Security: d23119df-335d-11e2-b64c-c8600054b392 Approved by: portmgr (beat) Feature safe: yes
1037 lines
32 KiB
Makefile
1037 lines
32 KiB
Makefile
#-*- tab-width: 4; -*-
|
|
# ex:ts=4
|
|
#
|
|
# Date created: 12 Nov 2005
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# 4 column tabs prevent hair loss and tooth decay!
|
|
|
|
# ======================= USERS =================================
|
|
# To specify which gecko-based backend you prefer, use something like:
|
|
#
|
|
# WITH_GECKO= libxul
|
|
#
|
|
# The valid backends are:
|
|
# libxul libxul19
|
|
#
|
|
# See below for more details.
|
|
# ======================= /USERS ================================
|
|
|
|
# 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) && ${USE_GECKO}!="gecko"
|
|
|
|
.if !defined(Gecko_Pre_Include)
|
|
# Please make sure all changes to this file are passed through the maintainer.
|
|
# Do not commit them yourself (unless of course you're the Port's Wraith ;).
|
|
Gecko_Include_MAINTAINER= gecko@FreeBSD.org
|
|
Gecko_Pre_Include= bsd.gecko.mk
|
|
|
|
# Users should use the following syntax:
|
|
#
|
|
# WITH_GECKO= libxul libxul19
|
|
# Use libxul whenever a port supports it, falling back on libxul19.
|
|
# WITH_GECKO= libxul
|
|
# Sets your preferred backend. With this example, libxul will always
|
|
# be chosen, unless the port doesn't support a libxul backend. In that
|
|
# case, you get whatever the porter chose as the default. Better to use
|
|
# the first example.
|
|
#
|
|
#
|
|
# Ports should use the following:
|
|
#
|
|
# USE_GECKO= libxul libxul19
|
|
# 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/libxul will be used
|
|
# as a gecko backend unless WITH_GECKO=libxul19 is defined by the
|
|
# user.
|
|
#
|
|
# USE_GECKO= libxul19<->libxul
|
|
# This will sed -e 's/libxul/libxul19/' on Makefile.in's and configure
|
|
# if ${GECKO}=="libxul19"
|
|
#
|
|
# Example:
|
|
# USE_GECKO= libxul libxul19
|
|
#
|
|
# post-patch:
|
|
# @${REINPLACE_CMD} -e 's|mozilla-|${GECKO}-|' \
|
|
# ${MOZSRC}/configure
|
|
#
|
|
# If you want your port to check the ${GECKO} variable to see which backend
|
|
# has been chosen.
|
|
#
|
|
# Example:
|
|
# USE_GECKO= libxul libxul19
|
|
#
|
|
# post-patch:
|
|
# .if ${GECKO}=="libxul19"
|
|
# @${REINPLACE_CMD} -e 's|mozilla-|libxul-|' \
|
|
# ${MOZSRC}/configure
|
|
# .endif
|
|
|
|
_GECKO_ALL= libxul libxul19
|
|
|
|
libxul_PLIST= libxul>=10
|
|
libxul19_PLIST= libxul<2
|
|
|
|
.for gecko in ${_GECKO_ALL}
|
|
${gecko}_PORTSDIR?= www
|
|
${gecko}_DEPENDS?= ${PORTSDIR}/${${gecko}_PORTSDIR}/${gecko}
|
|
${gecko}_PLIST?= ${LOCALBASE}/lib/${gecko}/libgtkembedmoz.so
|
|
.endfor
|
|
|
|
# Figure out which mozilla to use
|
|
# Weed out bad options in USE_GECKO
|
|
.for badgecko in ${USE_GECKO}
|
|
. if ${_GECKO_ALL:M${badgecko:C/^([^<->]+).*/\1/}}!=""
|
|
GOOD_USE_GECKO+= ${badgecko:C/^([^<->]+).*/\1/}
|
|
. endif
|
|
. if ${_GECKO_ALL:M${badgecko:C/^[^<->]+<->([^<->]+).*/\1/}}!="${badgecko:C/^([^<->]+).*/\1/}"
|
|
${badgecko:C/^([^<->]+).*/\1/}_HACK= s:${badgecko:C/^[^<->]+<->([^<->]+).*/\1/}:${badgecko:C/^([^<->]+).*/\1/}:g
|
|
. endif
|
|
.endfor
|
|
|
|
.undef GECKO_FALLTHROUGH
|
|
.undef _FOUND_WITH_GECKO
|
|
# Figure out which gecko to use and weed out the bad ones
|
|
.if defined(WITH_GECKO) && defined(GOOD_USE_GECKO)
|
|
. for badgecko in ${WITH_GECKO}
|
|
. if ${GOOD_USE_GECKO:M${badgecko}}!=""
|
|
GOOD_WITH_GECKO+= ${badgecko}
|
|
. endif
|
|
. endfor
|
|
. if defined(GOOD_WITH_GECKO)
|
|
. for gecko in ${GOOD_WITH_GECKO}
|
|
. if !defined(GECKO_FALLTHROUGH)
|
|
GECKO= ${gecko}
|
|
GECKO_FALLTHROUGH= ${TRUE}
|
|
_FOUND_WITH_GECKO= ${TRUE}
|
|
. endif
|
|
. endfor
|
|
. endif
|
|
.endif
|
|
|
|
.if !defined(GECKO) && defined(GOOD_USE_GECKO)
|
|
. for gecko in ${GOOD_USE_GECKO}
|
|
. if !defined(GECKO_FALLTRHOUGH)
|
|
GECKO= ${gecko}
|
|
GECKO_FALLTRHOUGH= ${TRUE}
|
|
. endif
|
|
. endfor
|
|
.endif
|
|
|
|
# Generic defines
|
|
GECKO_CONFIG?= ${LOCALBASE}/bin/${GECKO}-config
|
|
XPIDL?= ${LOCALBASE}/lib/${GECKO}/xpidl
|
|
XPIDL_INCL?= `${GECKO_CONFIG} --idlflags`
|
|
|
|
.if defined(GECKO) && ${_GECKO_ALL:M${GECKO}}!=""
|
|
BUILD_DEPENDS+= ${${GECKO}_PLIST}:${${GECKO}_DEPENDS}
|
|
RUN_DEPENDS+= ${${GECKO}_PLIST}:${${GECKO}_DEPENDS}
|
|
.else
|
|
IGNORE= Unable to find a supported gecko, please check USE_GECKO
|
|
.endif
|
|
|
|
pre-everything:: _gecko-pre-everything
|
|
|
|
_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}."
|
|
@${ECHO_CMD} " \"${GECKO}\" will be used"
|
|
@${ECHO_CMD} ""
|
|
@${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 that by defining WITH_GECKO to the following values:"
|
|
.endif
|
|
@${ECHO_CMD} ""
|
|
.for gecko in ${GOOD_USE_GECKO}
|
|
@${ECHO_CMD} " ${gecko} "
|
|
.endfor
|
|
@${ECHO_CMD} ""
|
|
|
|
post-patch: gecko-post-patch
|
|
|
|
gecko-post-patch:
|
|
.if defined(${GECKO}_HACK)
|
|
${FIND} ${WRKSRC} -name "Makefile.in" -type f -o -name "configure" -type f | \
|
|
${XARGS} ${REINPLACE_CMD} -e ${${GECKO}_HACK}
|
|
.endif
|
|
.endif
|
|
|
|
.elif !defined(_POSTMKINCLUDED) && !defined(Gecko_Pre_Include) && (defined(USE_FIREFOX) || defined(USE_FIREFOX_BUILD) || defined(USE_SEAMONKEY) || defined(USE_SEAMONKEY_BUILD) || defined(USE_THUNDERBIRD) || defined(USE_THUNDERBIRD_BUILD))
|
|
Gecko_Pre_Include= bsd.gecko.mk
|
|
|
|
# Ports can use the following:
|
|
#
|
|
# USE_FIREFOX Add runtime dependency on Firefox. If no version
|
|
# is given by the maintainer via the port or by the
|
|
# user via defined variable try to find the highest
|
|
# stable installed version.
|
|
# Available values: yes 10+ 17+ 10 17+
|
|
# NOTE:
|
|
# default value 10 is used in case of USE_FIREFOX=yes
|
|
#
|
|
# USE_FIREFOX_BUILD Add buildtime dependency on Firefox.
|
|
# Available values: see USE_FIREFOX
|
|
#
|
|
# USE_SEAMONKEY Add runtime dependency on SeaMonkey. If no
|
|
# version is given by the maintainer via the port
|
|
# or by the user via defined variable try to find
|
|
# the highest stable installed version.
|
|
# Available values: yes 14+ 14
|
|
# NOTE:
|
|
# default value 14 is used in case of USE_SEAMONKEY=yes
|
|
#
|
|
# USE_SEAMONKEY_BUILD Add buildtime dependency on SeaMonkey.
|
|
# Available values: see USE_SEAMONKEY
|
|
#
|
|
# USE_THUNDERBIRD Add runtime dependency on Thunderbird. If no
|
|
# version is given by the maintainer via the port
|
|
# or by the user via defined variable try to find
|
|
# the highest stable installed version.
|
|
# Available values: yes 10+ 17+ 10 17
|
|
# NOTE:
|
|
# default value 10 is used in case of USE_THUNDERBIRD=yes
|
|
#
|
|
# USE_THUNDERBIRD_BUILD Add buildtime dependency on Thunderbird.
|
|
# Available values: see USE_THUNDERBIRD
|
|
#
|
|
|
|
#
|
|
# Firefox part
|
|
#
|
|
.if defined(USE_FIREFOX) || defined(USE_FIREFOX_BUILD)
|
|
|
|
# Process USE_FIREFOX_BUILD
|
|
.if defined(USE_FIREFOX_BUILD)
|
|
USE_FIREFOX:= ${USE_FIREFOX_BUILD}
|
|
_FIREFOX_BUILD_DEPENDS= yes
|
|
.endif
|
|
|
|
_FIREFOX_DEFAULT_VERSION= 10
|
|
_FIREFOX_VERSIONS= 10 17
|
|
_FIREFOX_RANGE_VERSIONS= 10+ 17+
|
|
|
|
# For specifying [10, ..]+
|
|
_FIREFOX_17P= 17 ${_FIREFOX_10P}
|
|
_FIREFOX_10P= 10
|
|
|
|
# Set the default Firefox version and check if USE_FIREFOX=yes was given
|
|
.if ${USE_FIREFOX} == "yes"
|
|
USE_FIREFOX= ${_FIREFOX_DEFAULT_VERSION}
|
|
.endif
|
|
|
|
# Setting/finding Firefox version we want.
|
|
.if exists(${LOCALBASE}/bin/firefox)
|
|
_FIREFOX_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null | ${HEAD} -1 | ${SED} -e 's/Mozilla Firefox \([0-9]\{1,2\}\)\.\([0-9]*\).*/\1/'
|
|
.endif
|
|
|
|
# Check if installed Firefox version matches the wanted one
|
|
.if defined(_FIREFOX_VER)
|
|
_SUPFIREFOX= no
|
|
.if ${USE_FIREFOX:C/[0-9][0-9]//} == "+"
|
|
.for ver in ${_FIREFOX_RANGE_VERSIONS}
|
|
.if ${USE_FIREFOX} == "${ver}"
|
|
_MATCHED_FIREFOX_VER:= ${ver:S/+//}
|
|
.for firefox in ${_FIREFOX_${_MATCHED_FIREFOX_VER}P}
|
|
.if ${_FIREFOX_VER} == ${firefox}
|
|
_SUPFIREFOX= yes
|
|
USE_FIREFOX= ${_FIREFOX_VER}
|
|
.endif
|
|
.endfor
|
|
.endif
|
|
.endfor
|
|
.else
|
|
.if ${_FIREFOX_VER} == ${USE_FIREFOX}
|
|
_SUPFIREFOX= yes
|
|
.endif
|
|
.endif
|
|
.if ${_SUPFIREFOX} == no
|
|
_DISPLAY_VERSION_HAVE= ${_FIREFOX_VER}
|
|
_DISPLAY_VERSION_WANT= ${USE_FIREFOX}
|
|
|
|
IGNORE= cannot install: Firefox versions mismatch: firefox-${_DISPLAY_VERSION_HAVE} is installed and wanted version is firefox-${_DISPLAY_VERSION_WANT}
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(_FIREFOX_${USE_FIREFOX:S/+//}P)
|
|
IGNORE= cannot install: unknown Firefox version: firefox-${USE_FIREFOX:C/([0-9])([0-9])/\1.\2/}
|
|
.endif
|
|
|
|
# Dependence lines for different Firefox versions
|
|
10_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr
|
|
17_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox
|
|
|
|
# Add dependencies
|
|
.if defined(USE_FIREFOX)
|
|
.if defined(_FIREFOX_BUILD_DEPENDS)
|
|
BUILD_DEPENDS+= ${${USE_FIREFOX}_DEPENDS}
|
|
.endif
|
|
RUN_DEPENDS+= ${${USE_FIREFOX}_DEPENDS}
|
|
.endif
|
|
|
|
.endif # defined(USE_FIREFOX)
|
|
#
|
|
# SeaMonkey part
|
|
#
|
|
.if defined(USE_SEAMONKEY) || defined(USE_SEAMONKEY_BUILD)
|
|
|
|
# Process USE_SEAMONKEY_BUILD
|
|
.if defined(USE_SEAMONKEY_BUILD)
|
|
USE_SEAMONKEY:= ${USE_SEAMONKEY_BUILD}
|
|
_SEAMONKEY_BUILD_DEPENDS= yes
|
|
.endif
|
|
|
|
_SEAMONKEY_DEFAULT_VERSION= 14
|
|
_SEAMONKEY_VERSIONS= 14
|
|
_SEAMONKEY_RANGE_VERSIONS= 14+
|
|
|
|
# For specifying [14, ..]+
|
|
_SEAMONKEY_14P= 14
|
|
|
|
# Set the default SeaMonkey version and check if USE_SEAMONKEY=yes was given
|
|
.if ${USE_SEAMONKEY} == "yes"
|
|
USE_SEAMONKEY= ${_SEAMONKEY_DEFAULT_VERSION}
|
|
.endif
|
|
|
|
# Setting/finding SeaMonkey version we want.
|
|
.if exists(${LOCALBASE}/bin/seamonkey)
|
|
_SEAMONKEY_VER!= ${LOCALBASE}/bin/seamonkey --version 2>/dev/null | ${HEAD} -1 | ${SED} -e 's/Mozilla SeaMonkey \([0-9]\{1,2\}\)\.\([0-9]*\).*/\2/'
|
|
.endif
|
|
|
|
# Check if installed SeaMonkey version matches the wanted one
|
|
.if defined(_SEAMONKEY_VER)
|
|
_SUPSEAMONKEY= no
|
|
.if ${USE_SEAMONKEY:C/[0-9][0-9]//} == "+"
|
|
.for ver in ${_SEAMONKEY_RANGE_VERSIONS}
|
|
.if ${USE_SEAMONKEY} == "${ver}"
|
|
_MATCHED_SEAMONKEY_VER:= ${ver:S/+//}
|
|
.for seamonkey in ${_SEAMONKEY_${_MATCHED_SEAMONKEY_VER}P}
|
|
.if ${_SEAMONKEY_VER} == ${seamonkey}
|
|
_SUPSEAMONKEY= yes
|
|
USE_SEAMONKEY= ${_SEAMONKEY_VER}
|
|
.endif
|
|
.endfor
|
|
.endif
|
|
.endfor
|
|
.else
|
|
.if ${_SEAMONKEY_VER} == ${USE_SEAMONKEY}
|
|
_SUPSEAMONKEY= yes
|
|
.endif
|
|
.endif
|
|
.if ${_SUPSEAMONKEY} == no
|
|
IGNORE= cannot install: SeaMonkey versions mismatch: seamonkey-2.${_SEAMONKEY_VER} is installed and wanted version is seamonkey-2.${USE_SEAMONKEY}
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(_SEAMONKEY_${USE_SEAMONKEY:S/+//}P)
|
|
IGNORE= cannot install: unknown SeaMonkey version: seamonkey-2.${USE_SEAMONKEY}
|
|
.endif
|
|
|
|
# Dependence lines for different SeaMonkey versions
|
|
14_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey
|
|
|
|
# Add dependencies
|
|
.if defined(USE_SEAMONKEY)
|
|
.if defined(_SEAMONKEY_BUILD_DEPENDS)
|
|
BUILD_DEPENDS+= ${${USE_SEAMONKEY}_DEPENDS}
|
|
.endif
|
|
RUN_DEPENDS+= ${${USE_SEAMONKEY}_DEPENDS}
|
|
.endif
|
|
|
|
.endif # defined(USE_SEAMONKEY)
|
|
#
|
|
# Thunderbird part
|
|
#
|
|
.if defined(USE_THUNDERBIRD) || defined(USE_THUNDERBIRD_BUILD)
|
|
|
|
# Process USE_THUNDERBIRD_BUILD
|
|
.if defined(USE_THUNDERBIRD_BUILD)
|
|
USE_THUNDERBIRD:= ${USE_THUNDERBIRD_BUILD}
|
|
_THUNDERBIRD_BUILD_DEPENDS= yes
|
|
.endif
|
|
|
|
_THUNDERBIRD_DEFAULT_VERSION= 10
|
|
_THUNDERBIRD_VERSIONS= 10 17
|
|
_THUNDERBIRD_RANGE_VERSIONS= 10+ 17+
|
|
|
|
# For specifying [10, ..]+
|
|
_THUNDERBIRD_17P= 17 ${_THUNDERBIRD_10P}
|
|
_THUNDERBIRD_10P= 10
|
|
|
|
# Set the default Thunderbird version and check if USE_THUNDERBIRD=yes was given
|
|
.if ${USE_THUNDERBIRD} == "yes"
|
|
USE_THUNDERBIRD= ${_THUNDERBIRD_DEFAULT_VERSION}
|
|
.endif
|
|
|
|
# Setting/finding Thunderbird version we want.
|
|
.if exists(${LOCALBASE}/bin/thunderbird)
|
|
_THUNDERBIRD_VER!= ${LOCALBASE}/bin/thunderbird --version 2>/dev/null | ${HEAD} -1 | ${SED} -e 's/ Thunderbird \([0-9]\{1,2\}\)\.\([0-9]*\).*/\1/'
|
|
.endif
|
|
|
|
# Check if installed Thunderbird version matches the wanted one
|
|
.if defined(_THUNDERBIRD_VER)
|
|
_SUPTHUNDERBIRD= no
|
|
.if ${USE_THUNDERBIRD:C/[0-9][0-9]//} == "+"
|
|
.for ver in ${_THUNDERBIRD_RANGE_VERSIONS}
|
|
.if ${USE_THUNDERBIRD} == "${ver}"
|
|
_MATCHED_THUNDERBIRD_VER:= ${ver:S/+//}
|
|
.for thunderbird in ${_THUNDERBIRD_${_MATCHED_THUNDERBIRD_VER}P}
|
|
.if ${_THUNDERBIRD_VER} == ${thunderbird}
|
|
_SUPTHUNDERBIRD= yes
|
|
USE_THUNDERBIRD= ${_THUNDERBIRD_VER}
|
|
.endif
|
|
.endfor
|
|
.endif
|
|
.endfor
|
|
.else
|
|
.if ${_THUNDERBIRD_VER} == ${USE_THUNDERBIRD}
|
|
_SUPTHUNDERBIRD= yes
|
|
.endif
|
|
.endif
|
|
.if ${_SUPTHUNDERBIRD} != yes
|
|
_DISPLAY_VERSION_HAVE= ${_THUNDERBIRD_VER}
|
|
_DISPLAY_VERSION_WANT= ${USE_THUNDERBIRD}
|
|
IGNORE= cannot install: Thunderbird versions mismatch: thunderbird-${_DISPLAY_VERSION_HAVE} is installed and wanted version is thunderbird-${_DISPLAY_VERSION_WANT}
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(_THUNDERBIRD_${USE_THUNDERBIRD:S/+//}P)
|
|
IGNORE= cannot install: unknown Thunderbird version: thunderbird-${USE_THUNDERBIRD:C/([0-9])([0-9])/\1.\2/}
|
|
.endif
|
|
|
|
# Dependence lines for different Thunderbird versions
|
|
10_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:${PORTSDIR}/mail/thunderbird-esr
|
|
17_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:${PORTSDIR}/mail/thunderbird
|
|
|
|
# Add dependencies
|
|
.if defined(USE_THUNDERBIRD)
|
|
.if defined(_THUNDERBIRD_BUILD_DEPENDS)
|
|
BUILD_DEPENDS+= ${${USE_THUNDERBIRD}_DEPENDS}
|
|
.endif
|
|
RUN_DEPENDS+= ${${USE_THUNDERBIRD}_DEPENDS}
|
|
.endif
|
|
|
|
.endif # defined(USE_THUNDERBIRD)
|
|
|
|
.else # split
|
|
|
|
.if !defined(_POSTMKINCLUDED) && !defined(Gecko_Pre_Include)
|
|
Gecko_Pre_Include= bsd.gecko.mk
|
|
|
|
# This file contains some reusable components for mozilla ports. It's of
|
|
# use primarily to apps from the mozilla project itself (such as Firefox,
|
|
# Thunderbird, etc.), and probably won't be of use for gecko-based ports
|
|
# like epiphany, galeon, etc.
|
|
#
|
|
# You need to make sure to add USE_GECKO=gecko to for your port can uses
|
|
# one of these options below.
|
|
#
|
|
# Ports can use the following:
|
|
#
|
|
# USE_MOZILLA By default, it enables the denendencies: cairo, dbm,
|
|
# event, ffi, hunspell, jpeg, nspr, nss, png, sqlite,
|
|
# vpx and zip. Search for '_ALL_DEPENDS' below to see
|
|
# the list. If your port doesn't need one of list then
|
|
# you can use '-' like 'USE_MOZILLA= -png -zip' to
|
|
# subtract the dependencies.
|
|
#
|
|
# GECKO_PLIST_PRE_FILES Manual add files in the plist if it needs.
|
|
#
|
|
# GECKO_PLIST_PRE_DIRS Manual directories in the plist if it needs.
|
|
#
|
|
# MOZILLA_PLIST_DIRS List of directories to descend into when installing
|
|
# and creating the plist
|
|
#
|
|
# MOZ_PIS_SCRIPTS List of scripts residing in ${FILESDIR} to be
|
|
# filtered through MOZCONFIG_SED and installed along
|
|
# with our Pluggable Init Scripts (PIS)
|
|
#
|
|
# MOZ_SED_ARGS sed(1) commands through which MOZ_PIS_SCRIPTS are
|
|
# filtered. There is a default set defined here, so
|
|
# you probably want to add to MOZ_SED_ARGS rather
|
|
# than clobber it
|
|
#
|
|
# MOZ_OPTIONS configure arguments (added to .mozconfig). If
|
|
# NOMOZCONFIG is defined, you probably want to set
|
|
# CONFIGURE_ARGS+=${MOZ_OPTIONS}
|
|
#
|
|
# MOZ_MK_OPTIONS The make(1) arguments (added to .mozconfig). If
|
|
# NOMOZCONFIG is defined, you probably want to set
|
|
# MAKE_ARGS+=${MOZ_MK_OPTIONS}
|
|
#
|
|
# MOZ_EXPORT Environment variables for the build process (added
|
|
# to .mozconfig). If NOMOZCONFIG is defined, you
|
|
# probably want to set MAKE_ENV+=${MOZ_EXPORT}
|
|
#
|
|
# MOZ_CHROME A variable for the --enable-chrome-format= in
|
|
# CONFIGURE_ARGS. The default is omni.
|
|
#
|
|
# MOZ_TOOLKIT A variable for the --enable-default-toolkit= in
|
|
# CONFIGURE_ARGS. The default is cairo-gtk2.
|
|
#
|
|
# MOZ_EXTENSIONS A list of extensions to build
|
|
#
|
|
# MOZ_PROTOCOLS A list of protocols to build (http, ftp, etc.)
|
|
#
|
|
# PORT_MOZCONFIG Defaults to ${FILESDIR}/mozconfig.in, but can be
|
|
# set to a generic mozconfig included with the port
|
|
#
|
|
# NOGECKO_INSTALL Don't install the built gecko (most likely for
|
|
# testing)
|
|
#
|
|
# NOGECKO_PLIST Don't create a dynamically-generated playlist
|
|
#
|
|
# NOMOZCONFIG Don't drop a customized .mozconfig into the build
|
|
# directory. Options will have to be specified in
|
|
# CONFIGURE_ARGS instead
|
|
#
|
|
|
|
MAINTAINER?= gecko@FreeBSD.org
|
|
|
|
MOZILLA?= ${PORTNAME}
|
|
MOZILLA_VER?= ${PORTVERSION}
|
|
MOZILLA_BIN?= ${PORTNAME}-bin
|
|
MOZILLA_EXEC_NAME?=${MOZILLA}
|
|
MOZ_RPATH?= ${MOZILLA}
|
|
USE_GNOME+= libidl desktopfileutils
|
|
USE_ICONV= yes
|
|
USE_PERL5_BUILD=yes
|
|
USE_XORG= printproto sm xt xi xext x11 xinerama \
|
|
ice xproto
|
|
|
|
MOZILLA_SUFX?= none
|
|
MOZSRC?= ${WRKSRC}
|
|
WRKSRC?= ${WRKDIR}/mozilla
|
|
FAKEDIR?= ${WRKDIR}/fake
|
|
PLIST?= ${WRKDIR}/plist
|
|
PLISTD?= ${WRKDIR}/plist_dirs
|
|
PLISTF?= ${WRKDIR}/plist_files
|
|
|
|
MOZ_PIS_DIR?= lib/${MOZILLA}/init.d
|
|
|
|
PORT_MOZCONFIG?= ${FILESDIR}/mozconfig.in
|
|
MOZCONFIG?= ${WRKSRC}/.mozconfig
|
|
MOZILLA_PLIST_DIRS?= bin lib
|
|
PKGINSTALL?= ${WRKDIR}/pkg-install
|
|
PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall
|
|
PKGINSTALL_INC?= ${.CURDIR}/../../www/firefox/files/pkg-install.in
|
|
PKGDEINSTALL_INC?= ${.CURDIR}/../../www/firefox/files/pkg-deinstall.in
|
|
|
|
EXTRACT_AFTER_ARGS?= | ${TAR} -xf - --exclude */CVS/* \
|
|
--exclude */macbuild/* \
|
|
--exclude */package/* \
|
|
--exclude mozilla*/gc/boehm
|
|
|
|
MOZ_PKGCONFIG_FILES?= ${MOZILLA}-gtkmozembed ${MOZILLA}-js \
|
|
${MOZILLA}-xpcom ${MOZILLA}-plugin
|
|
|
|
MOZ_EXPORT+= ${CONFIGURE_ENV} \
|
|
LIBS="${LIBS}" PERL="${PERL}"
|
|
MOZ_OPTIONS+= --prefix="${FAKEDIR}"
|
|
|
|
CPPFLAGS+= -isystem${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.if ${OSVERSION} > 800072
|
|
LDFLAGS+= -Wl,-z,origin -Wl,-rpath,\\\$$\$$ORIGIN
|
|
.else
|
|
LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH}
|
|
.endif
|
|
|
|
.if ${MOZILLA_VER:R:R} >= 16 || exists(${.CURDIR}/files/patch-bug788955)
|
|
.if ${OSVERSION} > 1000011
|
|
# use jemalloc 3.0.0 API in libc
|
|
MOZ_EXPORT+= MOZ_JEMALLOC=1
|
|
.elif ${OSVERSION} > 701106
|
|
MOZ_OPTIONS+= --enable-jemalloc
|
|
MOZ_EXPORT+= MOZ_JEMALLOC=1
|
|
.endif
|
|
.endif
|
|
|
|
.if (${OSVERSION} >= 900000 && ${OSVERSION} < 900045) \
|
|
|| ${OSVERSION} < 802513
|
|
MOZ_EXPORT+= ac_cv_thread_keyword=no \
|
|
je_cv_tls_model=no
|
|
.endif
|
|
|
|
# Standard depends
|
|
_ALL_DEPENDS= cairo dbm event ffi hunspell jpeg nspr nss png sqlite vpx zip
|
|
|
|
cairo_LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo
|
|
cairo_MOZ_OPTIONS= --enable-system-cairo --enable-system-pixman
|
|
cairo_EXTRACT_AFTER_ARGS= --exclude mozilla*/gfx/cairo
|
|
|
|
dbm_EXTRACT_AFTER_ARGS= --exclude mozilla*/dbm
|
|
|
|
event_LIB_DEPENDS= event-2.0:${PORTSDIR}/devel/libevent2
|
|
event_MOZ_OPTIONS= --with-system-libevent
|
|
event_EXTRACT_AFTER_ARGS= --exclude mozilla*/ipc/chromium/src/third_party/libevent
|
|
|
|
ffi_LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi
|
|
ffi_MOZ_OPTIONS= --enable-system-ffi
|
|
ffi_EXTRACT_AFTER_ARGS= --exclude mozilla*/js/src/ctypes/libffi
|
|
|
|
hunspell_LIB_DEPENDS= hunspell-1.3:${PORTSDIR}/textproc/hunspell
|
|
hunspell_MOZ_OPTIONS= --enable-system-hunspell
|
|
|
|
# XXX: depends on pkgng package flavor support
|
|
#jpeg_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/libjpeg-turbo
|
|
jpeg_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg
|
|
jpeg_MOZ_OPTIONS= --with-system-jpeg=${LOCALBASE}
|
|
jpeg_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libjpeg
|
|
|
|
nspr_LIB_DEPENDS= nspr4:${PORTSDIR}/devel/nspr
|
|
nspr_MOZ_OPTIONS= --with-system-nspr
|
|
|
|
nss_LIB_DEPENDS= nss3:${PORTSDIR}/security/nss
|
|
nss_MOZ_OPTIONS= --with-system-nss
|
|
nss_EXTRACT_AFTER_ARGS= --exclude mozilla*/security/coreconf \
|
|
--exclude mozilla*/security/nss
|
|
|
|
png_LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
|
|
png_MOZ_OPTIONS= --with-system-png=${LOCALBASE}
|
|
png_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libpng
|
|
|
|
sqlite_LIB_DEPENDS= sqlite3:${PORTSDIR}/databases/sqlite3
|
|
sqlite_MOZ_OPTIONS= --enable-system-sqlite
|
|
|
|
vpx_LIB_DEPENDS= vpx:${PORTSDIR}/multimedia/libvpx
|
|
vpx_MOZ_OPTIONS= --with-system-libvpx
|
|
vpx_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libvpx
|
|
|
|
zip_BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip
|
|
zip_RUN_DEPENDS= ${zip_BUILD_DEPENDS}
|
|
|
|
.for use in ${USE_MOZILLA}
|
|
${use:S/-/_WITHOUT_/}= ${TRUE}
|
|
.endfor
|
|
|
|
.for dep in ${_ALL_DEPENDS}
|
|
.if !defined(_WITHOUT_${dep})
|
|
BUILD_DEPENDS+= ${${dep}_BUILD_DEPENDS}
|
|
LIB_DEPENDS+= ${${dep}_LIB_DEPENDS}
|
|
RUN_DEPENDS+= ${${dep}_RUN_DEPENDS}
|
|
MOZ_OPTIONS+= ${${dep}_MOZ_OPTIONS}
|
|
EXTRACT_AFTER_ARGS+= ${${dep}_EXTRACT_AFTER_ARGS}
|
|
.endif
|
|
.endfor
|
|
|
|
# Standard options
|
|
MOZ_CHROME?= omni
|
|
MOZ_TOOLKIT?= cairo-gtk2
|
|
MOZ_OPTIONS+= --disable-tests \
|
|
--enable-chrome-format=${MOZ_CHROME} \
|
|
--enable-default-toolkit=${MOZ_TOOLKIT} \
|
|
--with-pthreads
|
|
# Configure options for install
|
|
.if !defined(MOZ_EXTENSIONS)
|
|
MOZ_OPTIONS+= --enable-extensions=default
|
|
.else
|
|
MOZ_OPTIONS+= --enable-extensions=${MOZ_EXTENSIONS}
|
|
.endif
|
|
.if !defined(MOZ_PROTOCOLS)
|
|
MOZ_OPTIONS+= --enable-necko-protocols=default
|
|
.else
|
|
MOZ_OPTIONS+= --enable-necko-protocols=${MOZ_PROTOCOLS}
|
|
.endif
|
|
# others
|
|
MOZ_OPTIONS+= --with-system-zlib \
|
|
--with-system-bz2 \
|
|
--disable-debug-symbols \
|
|
--disable-glibtest \
|
|
--disable-gtktest \
|
|
--disable-freetypetest \
|
|
--disable-installer \
|
|
--disable-necko-wifi \
|
|
--disable-updater \
|
|
--disable-pedantic
|
|
|
|
.if exists(/usr/lib/libcxxrt.so)
|
|
LIBS+= -Wl,--as-needed,-lcxxrt,--no-as-needed
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
MOZ_TOOLKIT= cairo-qt
|
|
USE_MOZILLA+= -cairo # ports/169343
|
|
.endif
|
|
|
|
.if ${MOZ_TOOLKIT:Mcairo-qt}
|
|
USE_GNOME+= pango
|
|
USE_QT4+= moc_build gui network opengl
|
|
MOZ_OPTIONS+= --with-qtdir= # pkg-config
|
|
MOZ_EXPORT+= HOST_MOC="${MOC}" HOST_RCC="${FALSE}"
|
|
.else # gtk2, cairo-gtk2
|
|
USE_GNOME+= gtk20
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
|
|
MOZ_EXPORT+= MOZ_OPTIMIZE_FLAGS="${CFLAGS:M-O*}"
|
|
MOZ_OPTIONS+= --enable-optimize
|
|
.else
|
|
MOZ_OPTIONS+= --disable-optimize
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDBUS}
|
|
LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
|
|
notify.4:${PORTSDIR}/devel/libnotify \
|
|
startup-notification-1.0:${PORTSDIR}/x11/startup-notification
|
|
MOZ_OPTIONS+= --enable-startup-notification
|
|
.else
|
|
MOZ_OPTIONS+= --disable-dbus --disable-libnotify
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGSTREAMER}
|
|
USE_GSTREAMER= yes
|
|
MOZ_OPTIONS+= --enable-gstreamer
|
|
.else
|
|
MOZ_OPTIONS+= --disable-gstreamer
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGCONF}
|
|
USE_GNOME+= gconf2
|
|
MOZ_OPTIONS+= --enable-gconf
|
|
.else
|
|
MOZ_OPTIONS+= --disable-gconf
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGIO} && ! ${PORT_OPTIONS:MQT4}
|
|
MOZ_OPTIONS+= --enable-gio
|
|
.else
|
|
MOZ_OPTIONS+= --disable-gio
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGNOMEUI}
|
|
USE_GNOME+= libgnomeui
|
|
MOZ_OPTIONS+= --enable-gnomeui
|
|
.else
|
|
MOZ_OPTIONS+= --disable-gnomeui
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGNOMEVFS2}
|
|
USE_GNOME+= gnomevfs2
|
|
MOZ_OPTIONS+= --enable-gnomevfs
|
|
MOZ_OPTIONS:= ${MOZ_OPTIONS:C/(extensions)=(.*)/\1=\2,gnomevfs/}
|
|
.else
|
|
MOZ_OPTIONS+= --disable-gnomevfs
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLIBPROXY}
|
|
LIB_DEPENDS+= proxy:${PORTSDIR}/net/libproxy
|
|
MOZ_OPTIONS+= --enable-libproxy
|
|
.else
|
|
MOZ_OPTIONS+= --disable-libproxy
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MALSA}
|
|
LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins
|
|
MOZ_OPTIONS+= --enable-alsa
|
|
. if exists(${FILESDIR}/extra-bug780531)
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-bug780531
|
|
. endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPULSEAUDIO}
|
|
LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio
|
|
MOZ_OPTIONS+= --enable-pulseaudio
|
|
.endif
|
|
|
|
.if !defined(STRIP) || ${STRIP} == ""
|
|
MOZ_OPTIONS+= --disable-strip --disable-install-strip
|
|
.else
|
|
MOZ_OPTIONS+= --enable-strip --enable-install-strip
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDEBUG}
|
|
MOZ_OPTIONS+= --enable-debug
|
|
WITH_LOGGING= yes
|
|
.else
|
|
MOZ_OPTIONS+= --disable-debug
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLOGGING}
|
|
MOZ_OPTIONS+= --enable-logging
|
|
.else
|
|
MOZ_OPTIONS+= --disable-logging
|
|
.endif
|
|
|
|
MOZ_SED_ARGS+= -e's|@CPPFLAGS@|${CPPFLAGS}|g' \
|
|
-e 's|@CFLAGS@|${CFLAGS}|g' \
|
|
-e 's|@LDFLAGS@|${LDFLAGS}|g' \
|
|
-e 's|@LIBS@|${LIBS}|g' \
|
|
-e 's|@LOCALBASE@|${LOCALBASE}|g' \
|
|
-e 's|@FAKEDIR@|${FAKEDIR}|g' \
|
|
-e 's|@PERL@|${PERL5}|g' \
|
|
-e 's|@MOZDIR@|${PREFIX}/lib/${MOZILLA}|g' \
|
|
-e 's|%%PREFIX%%|${PREFIX}|g' \
|
|
-e 's|%%CFLAGS%%|${CFLAGS}|g' \
|
|
-e 's|%%LDFLAGS%%|${LDFLAGS}|g' \
|
|
-e 's|%%LIBS%%|${LIBS}|g' \
|
|
-e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
-e 's|%%FAKEDIR%%|${FAKEDIR}|g' \
|
|
-e 's|%%PERL%%|${PERL5}|g' \
|
|
-e 's|%%MOZILLA%%|${MOZILLA}|g' \
|
|
-e 's|%%MOZILLA_BIN%%|${MOZILLA_BIN}|g' \
|
|
-e 's|%%MOZDIR%%|${PREFIX}/lib/${MOZILLA}|g'
|
|
MOZCONFIG_SED?= ${SED} ${MOZ_SED_ARGS}
|
|
|
|
.if ${ARCH}=="sparc64"
|
|
# Work around miscompilation/mislinkage of the sCanonicalVTable hacks.
|
|
MOZ_OPTIONS+= --disable-v1-string-abi
|
|
.endif
|
|
|
|
.if defined(OBJDIR_BUILD)
|
|
CONFIGURE_SCRIPT=../configure
|
|
|
|
MOZ_OBJDIR= ${WRKSRC}/obj-${CONFIGURE_TARGET}
|
|
CONFIGURE_WRKSRC=${MOZ_OBJDIR}
|
|
BUILD_WRKSRC= ${MOZ_OBJDIR}
|
|
INSTALL_WRKSRC= ${MOZ_OBJDIR}
|
|
.else
|
|
MOZ_OBJDIR= ${WRKSRC}
|
|
.endif
|
|
|
|
.else # bsd.port.post.mk
|
|
|
|
post-patch: gecko-post-patch gecko-moz-pis-patch
|
|
|
|
gecko-post-patch:
|
|
.if exists(${PKGINSTALL_INC})
|
|
@${MOZCONFIG_SED} < ${PKGINSTALL_INC} > ${PKGINSTALL}
|
|
.endif
|
|
.if exists(${PKGDEINSTALL_INC})
|
|
@${MOZCONFIG_SED} < ${PKGDEINSTALL_INC} > ${PKGDEINSTALL}
|
|
.endif
|
|
@${RM} -f ${MOZCONFIG}
|
|
.if !defined(NOMOZCONFIG)
|
|
@if [ -e ${PORT_MOZCONFIG} ] ; then \
|
|
${MOZCONFIG_SED} < ${PORT_MOZCONFIG} >> ${MOZCONFIG} ; \
|
|
fi
|
|
.for arg in ${MOZ_OPTIONS}
|
|
@${ECHO_CMD} ac_add_options ${arg:Q} >> ${MOZCONFIG}
|
|
.endfor
|
|
.for arg in ${MOZ_MK_OPTIONS}
|
|
@${ECHO_CMD} mk_add_options ${arg:Q} >> ${MOZCONFIG}
|
|
.endfor
|
|
.for var in ${MOZ_EXPORT}
|
|
@${ECHO_CMD} export ${var:Q} >> ${MOZCONFIG}
|
|
.endfor
|
|
.endif # .if !defined(NOMOZCONFIG)
|
|
.if exists(${MOZSRC}/build/unix/mozilla-config.in)
|
|
@${REINPLACE_CMD} -e 's/%{idldir}/%idldir%/g ; \
|
|
s|"%FULL_NSPR_CFLAGS%"|`nspr-config --cflags`|g ; \
|
|
s|"%FULL_NSPR_LIBS%"|`nspr-config --libs`|g' \
|
|
${MOZSRC}/build/unix/mozilla-config.in
|
|
.endif
|
|
.if ${USE_MOZILLA:M-nspr}
|
|
@${ECHO_MSG} "===> Applying NSPR patches"
|
|
@for i in ${.CURDIR}/../../devel/nspr/files/patch-*; do \
|
|
${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/nsprpub/build < $$i; \
|
|
done
|
|
@${REINPLACE_CMD} -e '/DLL_SUFFIX/s/so\.1$$/so/' \
|
|
${WRKSRC}/nsprpub/configure
|
|
.endif
|
|
.if ${USE_MOZILLA:M-nss}
|
|
@${ECHO_MSG} "===> Applying NSS patches"
|
|
@for i in ${.CURDIR}/../../security/nss/files/patch-*; do \
|
|
${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/security/nss < $$i; \
|
|
done
|
|
.endif
|
|
.for subdir in "" nsprpub js/src
|
|
@if [ -f ${MOZSRC}/${subdir}/config/system-headers ] ; then \
|
|
for f in \
|
|
cairo-qt.h \
|
|
fenv.h \
|
|
kvm.h \
|
|
malloc_np.h \
|
|
pthread_np.h \
|
|
pulse/pulseaudio.h \
|
|
spawn.h \
|
|
sys/thr.h \
|
|
sys/user.h \
|
|
unwind.h; do \
|
|
${ECHO_CMD} "$$f" >> ${MOZSRC}/${subdir}/config/system-headers ; \
|
|
done; \
|
|
fi
|
|
.endfor
|
|
@for f in \
|
|
${WRKSRC}/directory/c-sdk/config/FreeBSD.mk \
|
|
${WRKSRC}/directory/c-sdk/configure \
|
|
${MOZSRC}/security/coreconf/FreeBSD.mk \
|
|
${MOZSRC}/js/src/Makefile.in \
|
|
${MOZSRC}/js/src/configure \
|
|
${MOZSRC}/configure \
|
|
${WRKSRC}/configure; do \
|
|
if [ -f $$f ] ; then \
|
|
${REINPLACE_CMD} -Ee 's|-lc_r|${PTHREAD_LIBS}|g ; \
|
|
s|-l?pthread|${PTHREAD_LIBS}|g ; \
|
|
s|echo aout|echo elf|g ; \
|
|
s|/usr/X11R6|${LOCALBASE}|g' \
|
|
$$f; \
|
|
fi; \
|
|
done
|
|
@if [ -f ${WRKSRC}/config/baseconfig.mk ] ; then \
|
|
${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \
|
|
${WRKSRC}/config/baseconfig.mk; \
|
|
else \
|
|
${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \
|
|
${WRKSRC}/config/autoconf.mk.in; \
|
|
fi
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
|
|
s|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${MOZSRC}/build/unix/run-mozilla.sh
|
|
@${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g ; \
|
|
s|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \
|
|
${MOZSRC}/xpcom/io/SpecialSystemDirectory.cpp
|
|
@${REINPLACE_CMD} -e 's|/etc|${PREFIX}&|g' \
|
|
${MOZSRC}/xpcom/build/nsXPCOMPrivate.h
|
|
@${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \
|
|
-e 's|mozilla/plugins|browser_plugins|g' \
|
|
${MOZSRC}/xpcom/io/nsAppFileLocationProvider.cpp \
|
|
${MOZSRC}/toolkit/xre/nsXREDirProvider.cpp
|
|
@${GREP} -lr 'PR_LoadLibrary.*\.so\.[0-9]' ${WRKSRC} | ${XARGS} \
|
|
${REINPLACE_CMD} -Ee '/PR_LoadLibrary/s/(\.so)\.[0-9]+/\1/'
|
|
.if ${MOZILLA} != "kompozer"
|
|
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${MOZSRC}/extensions/spellcheck/hunspell/src/mozHunspell.cpp
|
|
.endif
|
|
|
|
# handles mozilla pis scripts.
|
|
gecko-moz-pis-patch:
|
|
.for moz in ${MOZ_PIS_SCRIPTS}
|
|
@${MOZCONFIG_SED} < ${FILESDIR}/${moz} > ${WRKDIR}/${moz}
|
|
.endfor
|
|
|
|
pre-configure: gecko-pre-configure
|
|
|
|
gecko-pre-configure:
|
|
.if defined(OBJDIR_BUILD)
|
|
${MKDIR} ${MOZ_OBJDIR}
|
|
.endif
|
|
|
|
post-configure: gecko-post-configure
|
|
|
|
gecko-post-configure:
|
|
@${ECHO_CMD} "#define JNIIMPORT" >> ${MOZSRC}/mozilla-config.h
|
|
|
|
pre-install: gecko-moz-pis-pre-install gecko-pre-install port-pre-install gecko-create-plist
|
|
|
|
.if !target(port-pre-install)
|
|
port-pre-install:
|
|
@${DO_NADA}
|
|
.endif
|
|
|
|
gecko-pre-install:
|
|
.if !defined(NOGECKO_PLIST)
|
|
@${RM} -rf ${FAKEDIR} ${PLIST} ${PLISTD} ${PLISTF}
|
|
@${TOUCH} -f ${PLIST} ${PLISTD} ${PLISTF}
|
|
@cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \
|
|
${MAKEFILE} ${MAKE_ARGS} prefix=${FAKEDIR} ${INSTALL_TARGET}
|
|
.if defined(MOZILLA_SUFX) && ${MOZILLA_SUFX}!="none"
|
|
${MV} ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME:S/${MOZILLA_SUFX}//} ${FAKEDIR}/bin/${MOZILLA}
|
|
.if exists(${FAKEDIR}/bin/${MOZILLA_EXEC_NAME:S/${MOZILLA_SUFX}//}-config)
|
|
${MV} ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME:S/${MOZILLA_SUFX}//}-config ${FAKEDIR}/bin/${MOZILLA}-config
|
|
.endif
|
|
.for pc in ${MOZ_PKGCONFIG_FILES:S|${MOZILLA_SUFX}||}
|
|
${SED} -e 's|Requires: ${MOZILLA:S/${MOZILLA_SUFX}//}|Requires: ${MOZILLA}|' \
|
|
${FAKEDIR}/lib/pkgconfig/${pc}.pc > ${FAKEDIR}/lib/pkgconfig/${pc:S/${MOZILLA:S,${MOZILLA_SUFX},,}/${MOZILLA}/}.pc
|
|
.endfor
|
|
@${REINPLACE_CMD} -e 's|${MOZILLA_BIN}|${MOZILLA:S/${MOZILLA_SUFX}//}|; \
|
|
s|$${progbase}-bin|${MOZILLA:S/${MOZILLA_SUFX}//}-bin|' \
|
|
-e 's|${FAKEDIR}|${PREFIX}|g' \
|
|
-i '' $$(${REALPATH} ${FAKEDIR}/bin/${MOZILLA}*)
|
|
.else
|
|
@${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|g' \
|
|
-i '' $$(${REALPATH} ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME}*)
|
|
.endif
|
|
.endif
|
|
|
|
gecko-create-plist:
|
|
.if !defined(NOGECKO_PLIST)
|
|
# Create the plist
|
|
.for f in ${GECKO_PLIST_PRE_FILES}
|
|
${ECHO_CMD} ${f} >> ${PLISTF}
|
|
.endfor
|
|
.for f in ${GECKO_PLIST_PRE_DIRS}
|
|
${ECHO_CMD} "@dirrm ${f}" >> ${PLISTD}
|
|
.endfor
|
|
${MKDIR} ${FAKEDIR}/libdata
|
|
${MV} -f ${FAKEDIR}/lib/pkgconfig ${FAKEDIR}/libdata/ || ${TRUE}
|
|
${RM} -f ${FAKEDIR}/lib/pkgconfig
|
|
.for dir in ${MOZILLA_PLIST_DIRS}
|
|
@cd ${FAKEDIR}/${dir} && ${FIND} -H -s * ! -type d | \
|
|
${SED} -e 's|^|${dir}/|' >> ${PLISTF} && \
|
|
${FIND} -d * -type d | \
|
|
${SED} -e 's|^|@dirrm ${dir}/|' >> ${PLISTD}
|
|
.endfor
|
|
.for pcfile in ${MOZ_PKGCONFIG_FILES}
|
|
${ECHO_CMD} "libdata/pkgconfig/${pcfile}.pc" >> ${PLISTF}
|
|
@${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|g' \
|
|
-e 's|${MOZILLA}-nspr = ${PORTVERSION}|nspr|' \
|
|
${FAKEDIR}/libdata/pkgconfig/${pcfile}.pc
|
|
.endfor
|
|
${CAT} ${PLISTF} | ${SORT} >> ${PLIST}
|
|
${CAT} ${PLISTD} | ${SORT} -r >> ${PLIST}
|
|
${ECHO_CMD} "@exec ${LOCALBASE}/bin/update-desktop-database > /dev/null || ${TRUE}" >> ${PLIST}
|
|
${ECHO_CMD} "@unexec ${LOCALBASE}/bin/update-desktop-database > /dev/null || ${TRUE}" >> ${PLIST}
|
|
.endif # !defined(NOGECKO_PLIST)
|
|
|
|
do-install: gecko-do-install
|
|
|
|
gecko-do-install:
|
|
.if !defined(NOGECKO_INSTALL)
|
|
.for dir in ${MOZILLA_PLIST_DIRS}
|
|
.if !exists(${PREFIX}/${dir})
|
|
${MKDIR} ${PREFIX}/${dir}
|
|
.endif
|
|
${TAR} cf - -C${FAKEDIR}/${dir} -s'|${FAKEDIR}|${PREFIX}|s' . | \
|
|
${TAR} xof - -C${PREFIX}/${dir}
|
|
.endfor
|
|
.if (${OSVERSION} < 800081 )
|
|
# XXX: make sure bsdtar(1) corrected symlinks
|
|
${FIND} ${FAKEDIR} -type l -exec \
|
|
${ECHO_CMD} stat -f \'${LN} -hfs \"%Y\" \"%N\"\' {} + | \
|
|
${SED} s'|${FAKEDIR}|${PREFIX}|g' | ${SH} | \
|
|
${SED} -n s'|${FAKEDIR}|${PREFIX}|p' | ${SH} -x
|
|
.endif
|
|
.for pcfile in ${MOZ_PKGCONFIG_FILES}
|
|
${INSTALL_DATA} ${FAKEDIR}/libdata/pkgconfig/${pcfile}.pc \
|
|
${PREFIX}/libdata/pkgconfig/${pcfile}.pc
|
|
.endfor
|
|
.endif # !defined(NOGECKO_INSTALL)
|
|
|
|
gecko-moz-pis-pre-install:
|
|
.if defined(MOZ_PIS_SCRIPTS)
|
|
${MKDIR} ${FAKEDIR}/${MOZ_PIS_DIR}
|
|
.for moz in ${MOZ_PIS_SCRIPTS}
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${moz} ${FAKEDIR}/${MOZ_PIS_DIR}
|
|
.endfor
|
|
.endif
|
|
|
|
post-install: gecko-post-install
|
|
|
|
gecko-post-install:
|
|
.if !defined(PACKAGE_BUILDING) && !defined(NO_MOZPKGINSTALL)
|
|
@if [ -e ${PKGINSTALL} ] ; then \
|
|
${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL; \
|
|
fi
|
|
.endif
|
|
@-update-desktop-database
|
|
|
|
.endif
|
|
.endif
|
|
# HERE THERE BE TACOS -- adamw
|