blob: b05f266b18bd7519415d2cace7b32259f21e3844 (
plain)
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
|
# Created by: ijliao
PORTNAME= tightvnc
PORTVERSION= 1.3.10
PORTREVISION= 6
CATEGORIES= net java
MASTER_SITES= SF/vnc-tight/TightVNC-unix/${PORTVERSION}
DISTNAME= ${PORTNAME}-${PORTVERSION}_unixsrc
MAINTAINER= meta@FreeBSD.org
COMMENT= Enhanced version of VNC
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENCE.TXT
RUN_DEPENDS= showrgb:x11/rgb \
xauth:x11/xauth \
xorg-fonts>=7.2:x11-fonts/xorg-fonts
USES= cpe imake jpeg shebangfix perl5 tar:bzip2 xorg
USE_XORG= ice sm x11 xaw xext xmu xt xpm
CFLAGS+= -fcommon # for build with clang-11, see https://sourceforge.net/p/vnc-tight/bugs/1523/
MAKE_JOBS_UNSAFE= yes
CONFLICTS= tigervnc-*
WRKSRC= ${WRKDIR}/vnc_unixsrc
SHEBANG_FILES= vncserver
CFLAGS+= -Wno-return-type
ALL_TARGET= World
MAKE_ARGS= CC=${CC}
OPTIONS_DEFINE= JVNC_VIEWER
OPTIONS_SUB= yes
JVNC_VIEWER_DESC= Install Java-based vnc viewer
JVNC_VIEWER_USE= JAVA=yes
JVNC_VIEWER_VARS= JAVA_RUN=yes
.ifdef(TIGHTVNC_BASE)
PREFIX=${TIGHTVNC_BASE}
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == aarch64 || ${ARCH:Mpowerpc*} || ${ARCH} == riscv64
USE_GCC= yes
.endif
.if exists(${PREFIX}/share/vnc/classes/index.vnc)
IGNORE= vnc has already been installed, please uninstall it first
.endif
post-patch:
.for file in vncviewer/Imakefile Xvnc/config/cf/vnclibs.def
@${REINPLACE_CMD} -i '' -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/${file}
.endfor
@${REINPLACE_CMD} -i '' -e "s|/usr/local/vnc/classes|${DATADIR}/classes|g" \
${WRKSRC}/vncserver
@${REINPLACE_CMD} -i '' -e "s|%%CC%%|${CC}|g ; \
s|%%CFLAGS%%|${CFLAGS}|g" ${WRKSRC}/Xvnc/config/cf/FreeBSD.cf
do-install:
@(cd ${WRKSRC}; ./vncinstall ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/man)
.if defined(STRIP) && ${STRIP} != ""
.for FILE in Xvnc vncviewer vncpasswd vncconnect
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${FILE}
.endfor
.endif
do-install-JVNC_VIEWER-on:
@${MKDIR} ${STAGEDIR}${DATADIR}/classes
${INSTALL_DATA} ${WRKSRC}/classes/*.* ${STAGEDIR}${DATADIR}/classes
.include <bsd.port.post.mk>
|