1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/net/tsclient/Makefile
Koop Mast 6c54a79f29 Add USES=pathfix to fix packaging, this was accidently removed in the
previous commit.
While here stagify and switch to USES=libtool
2014-04-11 15:17:43 +00:00

56 lines
1.3 KiB
Makefile

# Created by: Koop Mast <einekoai@chello.nl>
# $FreeBSD$
PORTNAME= tsclient
PORTVERSION= 0.150
PORTREVISION= 10
CATEGORIES= net gnome
MASTER_SITES= SF
MAINTAINER= ports@thepentagon.org
COMMENT= GNOME 2 frontend for rdesktop and vncviewer
RUN_DEPENDS= rdesktop:${PORTSDIR}/net/rdesktop
USE_GNOME= gtk20
USES= gettext gmake libtool pathfix pkgconfig
GNU_CONFIGURE= yes
CONFIGURE_ENV= LIBS="`pkg-config --libs libgnomeui-2.0`"
CONFIGURE_ARGS= --disable-gnome
CPPFLAGS+= -I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`
LDFLAGS+= -L${LOCALBASE}/lib
PORTDOCS= COPYING NEWS README
OPTIONS_DEFINE= TIGHTVNC XNEST DOCS
TIGHTVNC_DESC= vncviewer support
XNEST_DESC= X via Xnest support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MTIGHTVNC}
RUN_DEPENDS+= vncviewer:${PORTSDIR}/net/tightvnc
.endif
.if ${PORT_OPTIONS:MXNEST}
RUN_DEPENDS+= Xnest:${PORTSDIR}/x11-servers/xorg-nestserver
.endif
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e '/^man1dir *=/ s,datadir,prefix,g' \
${WRKSRC}/Makefile.in
post-install:
@${LN} -sf tsclient.png \
${STAGEDIR}${PREFIX}/share/pixmaps/tsclient.png
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}
. for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
. endfor
.endif
.include <bsd.port.post.mk>