1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# New ports collection makefile for: linuxpluginwrapper
# Date Created: 2003-06-15
# Whom: nork@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= linuxpluginwrapper
PORTVERSION= 20051113
PORTREVISION= 10
CATEGORIES= www linux emulators
MASTER_SITES= http://people.FreeBSD.org/~nork/distfiles/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= nork
PATCH_SITES= http://defan.zenon.net/freebsd/
PATCHFILES= patch-nppdf-acroread-7.0.8
MAINTAINER= nork@FreeBSD.org
COMMENT= A wrapper allowing use of linux-plugins with native applications
OPTIONS= REALPLAYER "install linux-realplayer" off
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 700009
IGNORE= doesn't support ELF symbol versioning, yet.
.endif
# I will remove WITH_PLUGINS knob.
.if defined(WITH_REALPLAYER)
RUN_DEPENDS+= ${X11BASE}/lib/linux-mozilla/plugins/nphelix.so:${PORTSDIR}/multimedia/linux-realplayer
WITH_PLUGINS= 1
.endif
ONLY_FOR_ARCHS= i386
MAKE_ENV= EXAMPLESDIR=${EXAMPLESDIR} INSTALL_DATA="${INSTALL_DATA}" INSTALL_PROGRAM="${INSTALL_PROGRAM}"
CONFLICTS= flashpluginwrapper-*
USE_XLIB= yes
PLIST_SUB= LINUXBASE=${LINUXBASE}
PKGMESSAGE= ${WRKDIR}/pkg-message
.if !defined(WITH_PLUGINS)
PLIST= ${WRKDIR}/pkg-plist
.endif
LIBMAPCONF= ${EXAMPLESDIR}/libmap.conf-FreeBSD6
.if defined(WITH_DEBUG)
CFLAGS+= -DDEBUG=1
.endif
post-build:
@${SED} -e 's,%%PREFIX%%,${PREFIX},' \
-e 's,%%LOCALBASE%%,${LOCALBASE},' \
-e 's,%%X11BASE%%,${X11BASE},' \
-e 's,%%LTHREADSHMAJOR%%,${LTHREADSHMAJOR},' \
-e 's,%%LIBMAPCONF%%,${LIBMAPCONF},' \
< ${.CURDIR}/pkg-message > ${PKGMESSAGE}
.if !defined(WITH_PLUGINS)
@${SED} -e "/exec/d" ${.CURDIR}/pkg-plist > ${PLIST}
.endif
.if defined(WITH_PLUGINS)
pre-install:
@${MKDIR} ${X11BASE}/lib/browser_linux_plugins
.if defined(WITH_REALPLAYER)
@${LN} -sf ${X11BASE}/lib/linux-mozilla/plugins/nphelix.so \
${X11BASE}/lib/browser_linux_plugins/
@${LN} -sf ${X11BASE}/lib/linux-mozilla/plugins/nphelix.xpt \
${X11BASE}/lib/browser_linux_plugins/
.endif
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|