diff options
author | ryoon <ryoon@pkgsrc.org> | 2015-12-27 18:25:33 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2015-12-27 18:25:33 +0000 |
commit | debfa3215e1d2f6ea0c8eb79c9589b30e9ed143c (patch) | |
tree | f10565bf36037e424b5fcc937670955bb2b5235a /www/firefox | |
parent | 809240f50f70788846070b9676399288fa22785c (diff) | |
download | pkgsrc-debfa3215e1d2f6ea0c8eb79c9589b30e9ed143c.tar.gz |
Update to 43.0.2
* Add OSS support, disabled by default
Changelog:
43.0.2:
Stability fixes.
43.0.1:
Not for non-Microsoft Windows platforms.
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/Makefile | 5 | ||||
-rw-r--r-- | www/firefox/distinfo | 10 | ||||
-rw-r--r-- | www/firefox/options.mk | 12 |
3 files changed, 17 insertions, 10 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile index ce8f5fb45dc..fc3dd9d2b15 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.236 2015/12/19 12:50:55 martin Exp $ +# $NetBSD: Makefile,v 1.237 2015/12/27 18:25:33 ryoon Exp $ FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR} MOZ_BRANCH= 43.0 -MOZ_BRANCH_MINOR= +MOZ_BRANCH_MINOR= .2 DISTNAME= firefox-${FIREFOX_VER}.source PKGNAME= firefox-${MOZ_BRANCH}${MOZ_BRANCH_MINOR:S/b/beta/:S/esr//} @@ -10,7 +10,6 @@ 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.xz -PKGREVISION= 1 WRKSRC= ${WRKDIR}/${DISTNAME:S/.source//} diff --git a/www/firefox/distinfo b/www/firefox/distinfo index 6c01939e0a4..b9dcf64bbe8 100644 --- a/www/firefox/distinfo +++ b/www/firefox/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.226 2015/12/19 12:50:55 martin Exp $ +$NetBSD: distinfo,v 1.227 2015/12/27 18:25:33 ryoon Exp $ -SHA1 (firefox-43.0.source.tar.xz) = 65913f9dd61b49b341a66a514c9cac23b602c7c8 -RMD160 (firefox-43.0.source.tar.xz) = 9694b5389feaf88c8a11d6b9fb87cec18e6a27af -SHA512 (firefox-43.0.source.tar.xz) = 3ca37428d1b02ba2609ec526e86ab96563b403a03efde8439cbb4acdb282b5970ccb6a14266483c839389d59e07f6b0297314890ee04a669ba2d4b10bc4cb738 -Size (firefox-43.0.source.tar.xz) = 175414296 bytes +SHA1 (firefox-43.0.2.source.tar.xz) = 1ba1da32a1472a88f644bdb1373c40a97e721170 +RMD160 (firefox-43.0.2.source.tar.xz) = ac088a775eb5840e12f836964979ee5c91096eac +SHA512 (firefox-43.0.2.source.tar.xz) = 17380bd4f10601b015e7812cc11ea23b4880fe9909ebed03d59b6476f5d05a2a6d0baafb6cccc66d79b141abf8eea15f7c36ed6b59e4dc7279a3512ae0776ee9 +Size (firefox-43.0.2.source.tar.xz) = 175425028 bytes SHA1 (patch-aa) = c1cdfa90f0334bfb0493502ea19e85092a60bc88 SHA1 (patch-ao) = ca7e6723a10b9f6e3306cd12557e1856727edee9 SHA1 (patch-as) = 05f31f318155e0f927e13754c0fec5f4d50a39dc diff --git a/www/firefox/options.mk b/www/firefox/options.mk index 8e816017822..d97832af48b 100644 --- a/www/firefox/options.mk +++ b/www/firefox/options.mk @@ -1,8 +1,9 @@ -# $NetBSD: options.mk,v 1.27 2015/10/16 12:58:16 jmcneill Exp $ +# $NetBSD: options.mk,v 1.28 2015/12/27 18:25:33 ryoon Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.firefox PKG_SUPPORTED_OPTIONS= official-mozilla-branding -PKG_SUPPORTED_OPTIONS+= alsa debug debug-info mozilla-jemalloc gnome pulseaudio webrtc +PKG_SUPPORTED_OPTIONS+= debug debug-info mozilla-jemalloc gnome webrtc +PKG_SUPPORTED_OPTIONS+= alsa oss pulseaudio PLIST_VARS+= gnome jemalloc debug .if ${OPSYS} == "Linux" @@ -25,6 +26,13 @@ CONFIGURE_ARGS+= --enable-alsa CONFIGURE_ARGS+= --disable-alsa .endif +.if !empty(PKG_OPTIONS:Moss) +CONFIGURE_ARGS+= --with-oss +.include "../../mk/oss.buildlink3.mk" +.else +CONFIGURE_ARGS+= --without-oss +.endif + .if !empty(PKG_OPTIONS:Mgnome) .include "../../devel/libgnomeui/buildlink3.mk" #.include "../../sysutils/gnome-vfs/buildlink3.mk" |