- see https://www.mozilla.org/en-US/firefox/32.0/releasenotes/ - remove patch-toolkit_components_downloads_nsDownloadManager_cpp and patch-xpcom_io_SpecialSystemDirectory_cpp fiddling with modes when creating user dirs, they never made sense to me, and this is the wrong place to touch this. - remove patch-webapprt_moz_build, patch-webapprt_gtk2_Makefile_in and patch-configure_in from #1012447, merged upstream
87 lines
2.9 KiB
Makefile
87 lines
2.9 KiB
Makefile
# $OpenBSD: Makefile,v 1.258 2014/09/02 16:43:04 landry Exp $
|
|
|
|
COMMENT = Mozilla web browser
|
|
|
|
# Don't forget to bump www/firefox-i18n after updates.
|
|
# Don't forget to update devel/xulrunner/2.0 if patches changes.
|
|
|
|
MOZILLA_VERSION = 32.0
|
|
MOZILLA_BRANCH = release
|
|
MOZILLA_PROJECT = firefox
|
|
MOZILLA_CODENAME = browser
|
|
|
|
#MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla.org/${MOZILLA_PROJECT}/nightly/${MOZILLA_VERSION}-candidates/build1/source/
|
|
SO_VERSION = 50.0
|
|
# NOTE: Must bump minor version if any shlib's are removed from the
|
|
# components dir to avoid pkg_add -r issues.
|
|
MOZILLA_LIBS = browsercomps mozalloc mozgnome xul
|
|
|
|
CATEGORIES = www
|
|
|
|
# mozilla public license
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
# lots of logic in mozilla.port.mk
|
|
MODULES = www/mozilla devel/gettext lang/python
|
|
|
|
MODPY_RUNDEP = No
|
|
|
|
# necessary glue to build with the correct compiler after fx 17
|
|
MODULES += gcc4 lang/clang
|
|
MODGCC4_ARCHS = powerpc sparc64 alpha i386
|
|
MODGCC4_LANGS = c c++
|
|
MODCLANG_ARCHS = amd64
|
|
MODCLANG_LANGS = c c++
|
|
# fix for 982693
|
|
.if ${MACHINE_ARCH:Mamd64}
|
|
MAKE_ENV += VPXHACK="-fno-integrated-as"
|
|
.endif
|
|
|
|
# Regression tests are too hard to adapt to run here
|
|
NO_TEST = Yes
|
|
|
|
CONFIGURE_STYLE = autoconf no-autoheader
|
|
|
|
# to be able to link when building with clang on i386 or gcc on ppc
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "powerpc"
|
|
CONFIGURE_ARGS += --disable-debug-symbols
|
|
.endif
|
|
|
|
# relies on pulseaudio for sound and broken at runtime
|
|
CONFIGURE_ARGS += --disable-webrtc
|
|
|
|
CONFIGURE_ARGS += --enable-gstreamer=1.0
|
|
|
|
# libxul doesnt link directly with gst but dlopens it at runtime
|
|
# see content/media/gstreamer/GStreamerLoader.cpp
|
|
#LIB_DEPENDS += multimedia/gstreamer-0.10/plugins-base
|
|
#WANTLIB += gmodule-2.0 gstapp-0.10 gstbase-0.10 gstreamer-0.10
|
|
#WANTLIB += gstvideo-0.10 xml2
|
|
BUILD_DEPENDS += multimedia/gstreamer1/plugins-base
|
|
RUN_DEPENDS += multimedia/gstreamer1/plugins-good
|
|
|
|
MOZILLA_AUTOCONF_DIRS += js/src
|
|
|
|
post-install:
|
|
${SUBST_MAN} ${FILESDIR}/mozilla-firefox.1 \
|
|
${PREFIX}/man/man1/mozilla-firefox.1
|
|
cd ${PREFIX}/man/man1/ && ln -sf mozilla-firefox.1 firefox.1
|
|
cd ${PREFIX}/bin/ && ln -sf firefox mozilla-firefox
|
|
# install prefs
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/${MOZILLA_PROJECT}-${MOZILLA_VER}/browser/defaults/preferences
|
|
${SUBST_DATA} ${FILESDIR}/all-openbsd.js \
|
|
${PREFIX}/lib/${MOZILLA_PROJECT}-${MOZILLA_VER}/browser/defaults/preferences/all-openbsd.js
|
|
# install desktop file
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/applications/
|
|
${SUBST_DATA} ${FILESDIR}/${MOZILLA_PROJECT}.desktop \
|
|
${PREFIX}/share/applications/${MOZILLA_PROJECT}.desktop
|
|
# install icon for desktop file
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps/
|
|
${INSTALL_DATA} ${PREFIX}/lib/${MOZILLA_PROJECT}-${MOZILLA_VER}/browser/icons/mozicon128.png \
|
|
${PREFIX}/share/pixmaps/firefox.png
|
|
|
|
# link default48.png to default.png to be used by default by non-icccm compliant wm
|
|
ln ${PREFIX}/lib/firefox-${MOZILLA_VER}/browser/chrome/icons/default/default{48,}.png
|
|
|
|
.include <bsd.port.mk>
|