mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
81 lines
2.0 KiB
Makefile
81 lines
2.0 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tightvnc
|
|
PORTVERSION= 1.3.10
|
|
PORTREVISION= 3
|
|
CATEGORIES= net java
|
|
MASTER_SITES= SF/vnc-tight/TightVNC-unix/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}_unixsrc
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Enhanced version of VNC
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENCE.TXT
|
|
|
|
LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg
|
|
RUN_DEPENDS= showrgb:${PORTSDIR}/x11/rgb \
|
|
xauth:${PORTSDIR}/x11/xauth \
|
|
xorg-fonts>=7.2:${PORTSDIR}/x11-fonts/xorg-fonts
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
CONFLICTS= tridiavnc-[0-9]* vnc-[0-9]*
|
|
WRKSRC= ${WRKDIR}/vnc_unixsrc
|
|
USES= imake shebangfix perl5
|
|
SHEBANG_FILES= vncserver
|
|
CFLAGS+= -Wno-return-type
|
|
USE_BZIP2= yes
|
|
USE_XORG= xaw
|
|
ALL_TARGET= World
|
|
NO_INSTALL_MANPAGES= yes
|
|
|
|
MAN1= Xvnc.1 vncviewer.1 vncpasswd.1 vncconnect.1 vncserver.1
|
|
|
|
OPTIONS_DEFINE= JVNC_VIEWER
|
|
JVNC_VIEWER_DESC= Install Java-based vnc viewer
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MJVNC_VIEWER}
|
|
USE_JAVA= yes
|
|
JAVA_RUN= yes
|
|
PLIST_SUB+= JVNC_VIEWER=""
|
|
.else
|
|
PLIST_SUB+= JVNC_VIEWER="@comment "
|
|
.endif
|
|
|
|
.ifdef(TIGHTVNC_BASE)
|
|
PREFIX=${TIGHTVNC_BASE}
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.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%%|${PREFIX}|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 ${PREFIX}/bin ${PREFIX}/man)
|
|
.if defined(STRIP) && ${STRIP} != ""
|
|
.for FILE in Xvnc vncviewer vncpasswd vncconnect
|
|
@${STRIP_CMD} ${PREFIX}/bin/${FILE}
|
|
.endfor
|
|
.endif
|
|
.if ${PORT_OPTIONS:MJVNC_VIEWER}
|
|
@${MKDIR} ${DATADIR}/classes
|
|
${INSTALL_DATA} ${WRKSRC}/classes/*.* ${DATADIR}/classes
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|