7887c684ad
are the latest stable releases. * Update vala to the newest stable release 0.18.1, also update a few ports in the gtk/gnome stack. * The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles. * Remove pkg-config run depends from glib20 and freetype2. This doesn't eliminate pkg-config run dependency completely, a second phase is needed and is planned. * Support for .:run. and .:build. for USE_GNOME components was added. Currently only libxml2 and libxslt support this mechanism. * Updates of the telepathy stack and empathy. * Trim makefile headers, convert ports to new options, trim off library versions for some ports. * Fix other ports so they build with the new glib version. Thanks to miwi and crees for helping out with some exp-runs. Approved by: portmgr (miwi & bapt) Obtained from: gnome team repo
73 lines
1.7 KiB
Makefile
73 lines
1.7 KiB
Makefile
# New ports collection makefile for: nspluginwrapper
|
|
# Date created: 30 March 2007
|
|
# Whom: Dave Grochowski
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nspluginwrapper
|
|
PORTVERSION= 1.4.4
|
|
CATEGORIES= www linux emulators
|
|
MASTER_SITES= http://nspluginwrapper.org/download/ \
|
|
LOCAL/jkim \
|
|
LOCAL/jkim:binfile
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${BINFILE}:binfile
|
|
|
|
MAINTAINER= jkim@FreeBSD.org
|
|
COMMENT= A compatibility plugin for Mozilla NPAPI plugins
|
|
|
|
LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl
|
|
|
|
CONFLICTS= nspluginwrapper-1.3.*
|
|
|
|
BINBUILD= 1
|
|
BINFILE= ${PORTNAME}-i386-${PORTVERSION}-${BINBUILD}${EXTRACT_SUFX}
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= gtk2
|
|
USE_XORG= x11 xext xt
|
|
USE_GNOME= glib20 gtk20 pkgconfig
|
|
|
|
CFLAGS+= -std=c99
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_GMAKE= yes
|
|
HAS_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= --enable-generic --enable-strip --prefix=${PREFIX} \
|
|
--target-os=linux --target-cpu=i386 \
|
|
--with-cc=${CC} --with-cxx=${CXX}
|
|
|
|
LIBDIR= ${PREFIX}/lib/${PORTNAME}
|
|
|
|
PLIST_SUB= LIBDIR="${LIBDIR:C/^${PREFIX}\///}" HOST_ARCH="${HOST_ARCH}"
|
|
|
|
SUB_FILES= npviewer
|
|
SUB_LIST+= NSPLUGINWRAPPER="${LIBDIR}"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
HOST_ARCH= x86_64
|
|
.else
|
|
HOST_ARCH= ${ARCH}
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' \
|
|
${WRKSRC}/src/npw-config.c
|
|
@${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \
|
|
${WRKSRC}/src/npruntime.c ${WRKSRC}/src/npw-player.c \
|
|
${WRKSRC}/src/utils.c
|
|
|
|
post-install:
|
|
${MKDIR} ${LIBDIR}/i386/linux
|
|
${INSTALL_PROGRAM} ${WRKDIR}/usr/lib/nspluginwrapper/i386/linux/*.bin \
|
|
${WRKDIR}/usr/lib/nspluginwrapper/i386/linux/*.so \
|
|
${LIBDIR}/i386/linux/
|
|
${INSTALL_SCRIPT} ${WRKDIR}/npviewer ${LIBDIR}/i386/linux/
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|