diff options
author | mezz <mezz@FreeBSD.org> | 2009-01-10 02:45:46 +0000 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2009-01-10 02:45:46 +0000 |
commit | 867a335b88f91d457005fa0c7b3bb7c85c5fca14 (patch) | |
tree | 68af898c9a11dd756c516c49a6715cee75888e70 /www/firefox-devel/Makefile | |
parent | 6f64cd00171c29c1c7cdfb1e40393e23fc35151d (diff) | |
download | FreeBSD-ports-867a335b88f91d457005fa0c7b3bb7c85c5fca14.zip FreeBSD-ports-867a335b88f91d457005fa0c7b3bb7c85c5fca14.tar.gz |
Add a new framework for browser plugins, USE_WEBPLUGINS. It is for which foo
plugins support one of web browsers and can take care of plist (depend on how
you use it) at the same time. I have written a complete document and even show
how it works in the www/firefox/Makefile.webplugins so be sure to read in
there. If there is anything that isn't clear in the document, please feel free
to ask and I will try my best to improvement it.
FYI: GNOME 2.24 depends on this, so it's coming.
BTW: It's based on www/linux-mplayer-plugin/Makefile.npapi with heavy modified.
Approved by: portmgr
Diffstat (limited to 'www/firefox-devel/Makefile')
-rw-r--r-- | www/firefox-devel/Makefile | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/www/firefox-devel/Makefile b/www/firefox-devel/Makefile index e61e992..468d08c 100644 --- a/www/firefox-devel/Makefile +++ b/www/firefox-devel/Makefile @@ -3,11 +3,11 @@ # Whom: Alan Eldridge <alane@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/firefox-devel/Makefile,v 1.36 2007/02/24 21:00:46 mezz Exp $ +# $MCom: ports-stable/www/firefox-devel/Makefile,v 1.7 2008/08/07 04:42:35 mezz Exp $ PORTNAME= firefox DISTVERSION= 3.0.a2 -PORTREVISION= 3 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} @@ -95,17 +95,6 @@ port-pre-install: >> ${SYSTEM_PREFS} .endif # !defined(WITHOUT_NEWTAB) -do-install: - if [ ! -L ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ]; then \ - for jpi in ${JPI_LIST}; do \ - if [ -f $${jpi} ]; then \ - ${LN} -sf $${jpi} \ - ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ; \ - break; \ - fi; \ - done; \ - fi - post-install: ${MKDIR} ${PREFIX}/share/applications ${PREFIX}/share/pixmaps ${INSTALL_DATA} ${WRKDIR}/${MOZILLA}.desktop ${PREFIX}/share/applications/ |