diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-11-03 04:51:59 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-11-03 04:51:59 +0000 |
commit | 6253c7806bf1d9292b18a51d5c92608d96e7860b (patch) | |
tree | a34d541b9214967bfe9a09c21cb30fe0c82e6b07 /www/firefox24/Makefile | |
parent | e7d39d6b344e28bae19336645b615aa2dd32dbf4 (diff) | |
download | pkgsrc-6253c7806bf1d9292b18a51d5c92608d96e7860b.tar.gz |
Import firefox24-24.1.0 as www/firefox24.
Mozilla Firefox is a free, open-source and cross-platform web browser
for Windows, Linux, MacOS X and many other operating systems.
It is fast and easy to use, and offers many advantages over other web
browsers, such as tabbed browsing and the ability to block pop-up
windows.
Firefox also offers excellent bookmark and history management, and it
can be extended by developers using industry standards such as XML,
CSS, JavaScript, C++, etc. Many extensions are available.
This package tracks 24 extended support release branch.
Diffstat (limited to 'www/firefox24/Makefile')
-rw-r--r-- | www/firefox24/Makefile | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/www/firefox24/Makefile b/www/firefox24/Makefile new file mode 100644 index 00000000000..f556323923d --- /dev/null +++ b/www/firefox24/Makefile @@ -0,0 +1,94 @@ +# $NetBSD: Makefile,v 1.1 2013/11/03 04:51:59 ryoon Exp $ + +FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR} +MOZ_BRANCH= 24.1.0 +MOZ_BRANCH_MINOR= esr + +DISTNAME= firefox-${FIREFOX_VER}.source +PKGNAME= firefox24-${MOZ_BRANCH}${MOZ_BRANCH_MINOR:S/b/beta/:S/esr//} +CATEGORIES= www +#MASTER_SITES= ${MASTER_SITE_MOZILLA:=firefox/releases/${FIREFOX_VER}/source/} +MASTER_SITES+= ${MASTER_SITE_MOZILLA_ALL:=firefox/releases/${FIREFOX_VER}/source/} +EXTRACT_SUFX= .tar.bz2 + +WRKSRC= ${WRKDIR}/mozilla-esr24 + +MAINTAINER= ryoon@NetBSD.org +HOMEPAGE= http://www.mozilla.com/en-US/firefox/ +COMMENT= Web browser with support for extensions +LICENSE= mpl-1.1 + +MOZILLA_DIR= # empty + +# Note: when updating remember to conditionalise about-background.png in PLIST +# XXX Firefox 21.0's firefox/xulrunner separation is not working. +#CONFIGURE_ARGS+= --with-libxul-sdk=${PREFIX}/lib/xulrunner24 +#CONFIGURE_ARGS+= --with-system-libxul +CONFIGURE_ARGS+= --enable-application=browser + +# workround for link of libxul.so etc. +LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/${MOZILLA} ${COMPILER_RPATH_FLAG}${PREFIX}/lib +LDFLAGS.SunOS+= -lm +LDFLAGS.NetBSD+= -pthread + +ALL_ENV+= MOZILLA_PKG_NAME=firefox24 + +.include "../../mk/bsd.prefs.mk" + +# Avoid ld "invalid section index" errors. +.if ${OPSYS} == "SunOS" +BUILDLINK_TRANSFORM+= rm:-fdata-sections +BUILDLINK_TRANSFORM+= rm:-ffunction-sections +.endif + +LDFLAGS.DragonFly= -lplc4 -lnspr4 +LDFLAGS.FreeBSD= -lplc4 -lnspr4 +LDFLAGS.Linux= -lnspr4 + +.include "mozilla-common.mk" +.include "options.mk" + +CHECK_PORTABILITY_SKIP+= js/src/tests/update-test262.sh + +CHECK_INTERPRETER_SKIP+=lib/firefox24-sdk/sdk/bin/header.py +CHECK_INTERPRETER_SKIP+=lib/firefox24-sdk/sdk/bin/typelib.py +CHECK_INTERPRETER_SKIP+=lib/firefox24-sdk/sdk/bin/xpidl.py +CHECK_INTERPRETER_SKIP+=lib/firefox24-sdk/sdk/bin/xpt.py + +MOZILLA=firefox24 +MOZILLA_ICON= ${WRKSRC}/dist/firefox/browser/chrome/icons/default/default48.png +.if !empty(PKG_OPTIONS:Mofficial-mozilla-branding) +MOZILLA_NAME= Firefox +.else +MOZILLA_NAME= Browser +.endif + +SUBST_CLASSES+= sys-dic +SUBST_STAGE.sys-dic= pre-configure +SUBST_MESSAGE.sys-dic= Reference to system hunspell dictionaries. +SUBST_FILES.sys-dic= extensions/spellcheck/hunspell/src/mozHunspell.cpp +SUBST_VARS.sys-dic= PREFIX + +pre-configure: + cd ${WRKSRC} && autoconf + cd ${WRKSRC}/js/src && autoconf +# XXX Makefile is broken? When libxul is provided from devel/xulrunner, +# XXX please remove this. + mkdir ${WRKSRC}/js/src/.deps + +post-build: + ${SED} -e 's|@MOZILLA@|${MOZILLA}|g' \ + -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|g' \ + -e 's|@FIREFOX_ICON@|${MOZILLA}.png|g' \ + < ${FILESDIR}/desktop.in \ + > ${WRKDIR}/desktop + +INSTALLATION_DIRS+= share/applications share/pixmaps +post-install: + ${INSTALL_DATA} ${WRKDIR}/desktop \ + ${DESTDIR}${PREFIX}/share/applications/${MOZILLA}.desktop + ${INSTALL_DATA} ${MOZILLA_ICON} \ + ${DESTDIR}${PREFIX}/share/pixmaps/${MOZILLA}.png + +.include "../../sysutils/desktop-file-utils/desktopdb.mk" +.include "../../mk/bsd.pkg.mk" |