7c64203f67
- devel/racer no longer needs to dowgrade rustc-ap-syntax - Force rebuild all consumers to catch regressions early Changes: https://blog.rust-lang.org/2018/12/06/Rust-1.31.0.html Approved by: rust (tobik) Differential Revision: https://reviews.freebsd.org/D18427
65 lines
2 KiB
Makefile
65 lines
2 KiB
Makefile
# Created by: Alan Eldridge <alane@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= firefox
|
|
DISTVERSION= 60.4.0
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www ipv6
|
|
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \
|
|
MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build2/source
|
|
PKGNAMESUFFIX= -esr
|
|
DISTFILES= ${DISTNAME}esr.source${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= gecko@FreeBSD.org
|
|
COMMENT= Web browser based on the browser portion of Mozilla
|
|
|
|
BUILD_DEPENDS= nspr>=4.19:devel/nspr \
|
|
nss>=3.36.1:security/nss \
|
|
icu>=59.1,1:devel/icu \
|
|
libevent>=2.1.8:devel/libevent \
|
|
harfbuzz>=1.7.6:print/harfbuzz \
|
|
graphite2>=1.3.11:graphics/graphite2 \
|
|
png>=1.6.34:graphics/png \
|
|
libvorbis>=1.3.6,3:audio/libvorbis \
|
|
libvpx>=1.5.0:multimedia/libvpx \
|
|
sqlite3>=3.22.0:databases/sqlite3 \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
|
|
v4l_compat>0:multimedia/v4l_compat \
|
|
autoconf-2.13:devel/autoconf213 \
|
|
yasm:devel/yasm \
|
|
zip:archivers/zip
|
|
|
|
USE_GECKO= gecko
|
|
CPE_PRODUCT= ${PORTNAME}_esr
|
|
CONFLICTS_INSTALL= firefox
|
|
MOZ_PKGCONFIG_FILES= # empty
|
|
USE_MOZILLA= # empty
|
|
|
|
USES= tar:xz
|
|
|
|
FIREFOX_ICON= ${MOZILLA}.png
|
|
FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png
|
|
FIREFOX_DESKTOP= ${MOZSRC}/taskcluster/docker/${MOZILLA}-snap/${MOZILLA}.desktop
|
|
MOZ_OPTIONS= --enable-application=browser \
|
|
--enable-official-branding
|
|
|
|
.include "${.CURDIR}/../../www/firefox/Makefile.options"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/%u/%U/' -e '/X-MultipleArgs/d' \
|
|
-e '/^Icon/s/=.*/=${FIREFOX_ICON:R}/' \
|
|
${FIREFOX_DESKTOP}
|
|
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${WRKSRC}/browser/app/nsBrowserApp.cpp
|
|
|
|
pre-configure:
|
|
(cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13)
|
|
(cd ${WRKSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13)
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${FIREFOX_DESKTOP} ${STAGEDIR}${PREFIX}/share/applications/
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON}
|
|
|
|
.include <bsd.port.mk>
|