ef59be99e0
https://bugzilla.redhat.com/show_bug.cgi?id=511897 - Re-roll Linux/i386 binaries in tar format to remove extract dependency of rpm2cpio. I do not expect an official RPM package from upstream any way. Note I forced Linux/i386 npviewer.bin to be linked with libstdc++.so now. This seems to prevents dlopen(3) failures of some plugins. - Add a configure option to strip FreeBSD binaries while I am here. Obtained from: Fedora Project[1] Feature safe: yes
75 lines
1.8 KiB
Makefile
75 lines
1.8 KiB
Makefile
# New ports collection makefile for: nspluginwrapper
|
|
# Date created: 30 March 2007
|
|
# Whom: Dave Grochowski
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nspluginwrapper
|
|
PORTVERSION= 1.3.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= www linux emulators
|
|
MASTER_SITES= LOCAL/jkim
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${BINFILE}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= jkim@FreeBSD.org
|
|
COMMENT= A compatibility plugin for Mozilla NPAPI (development version)
|
|
|
|
LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl
|
|
|
|
LATEST_LINK= ${PORTNAME}-devel
|
|
|
|
CONFLICTS= nspluginwrapper-1.2.*
|
|
|
|
BINFILE= ${PORTNAME}-i386-${PORTVERSION}-2
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
USE_BZIP2= yes
|
|
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} \
|
|
--with-x11-prefix=${LOCALBASE}
|
|
|
|
LIBDIR= ${PREFIX}/lib/${PORTNAME}
|
|
|
|
PLIST_SUB= LIBDIR="${LIBDIR:C/^${PREFIX}\///}" HOST_ARCH="${HOST_ARCH}"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
HOST_ARCH= x86_64
|
|
.else
|
|
HOST_ARCH= ${ARCH}
|
|
.endif
|
|
|
|
# We must manually extract, modify, and install the Linux version of npviewer.
|
|
post-extract:
|
|
${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' \
|
|
${WRKDIR}/usr/lib/nspluginwrapper/i386/linux/npviewer
|
|
@${RM} ${WRKDIR}/usr/lib/nspluginwrapper/i386/linux/npviewer.bak
|
|
@${MV} ${WRKDIR}/usr ${WRKSRC}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g' \
|
|
${WRKSRC}/src/npw-config.c
|
|
@${RM} ${WRKSRC}/usr/lib/nspluginwrapper/i386/linux/npviewer.orig
|
|
|
|
post-install:
|
|
${MKDIR} ${LIBDIR}/i386/linux
|
|
${INSTALL_SCRIPT} ${WRKSRC}/usr/lib/nspluginwrapper/i386/linux/* \
|
|
${LIBDIR}/i386/linux/
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|