mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
15b6544926
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
35 lines
794 B
Makefile
35 lines
794 B
Makefile
# New ports collection makefile for: dummyflash
|
|
# Date Created: June 16 2004
|
|
# Whom: Daniel O'Connor <darius@dons.net.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dummyflash
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 5
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp.netscape.com/pub/sdk/plugin/unix/
|
|
DISTNAME= unix-sdk-3.0b5
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= darius@dons.net.au
|
|
COMMENT= Silently consume flash MIME types
|
|
|
|
USE_XORG= x11
|
|
BUILD_WRKSRC= ${WRKSRC}/PluginSDK30b5/examples/UnixTemplate/Unix
|
|
NO_WRKSUBDIR= yes
|
|
MAKEFILE= makefile.freebsd
|
|
|
|
USE_WEBPLUGINS= native
|
|
WEBPLUGINS_FILES=dummyflash.so
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/www/firefox/Makefile.webplugins"
|
|
|
|
do-install:
|
|
@${MKDIR} ${WEBPLUGINS_DIR}
|
|
${INSTALL_DATA} ${BUILD_WRKSRC}/dummyflash.so ${WEBPLUGINS_DIR}
|
|
|
|
.include <bsd.port.post.mk>
|