freebsd-ports/net/tsclient/Makefile
Baptiste Daroussin a96e4a942d net/tsclient: remove pkgconf calls
tsclient is always built with gnome disable, meaning it does not need
anymore the cflags from libgnomeui
2021-05-01 14:42:30 +02:00

56 lines
1.3 KiB
Makefile

# Created by: Koop Mast <einekoai@chello.nl>
PORTNAME= tsclient
PORTVERSION= 0.150
PORTREVISION= 11
CATEGORIES= net gnome
MASTER_SITES= SF
MAINTAINER= ports@thepentagon.org
COMMENT= GNOME 2 frontend for rdesktop and vncviewer
BROKEN_FreeBSD_13= ld: error: duplicate symbol: gConnect
BROKEN_FreeBSD_14= ld: error: duplicate symbol: gConnect
RUN_DEPENDS= rdesktop:net/rdesktop
USES= gettext gmake gnome libtool pathfix pkgconfig
USE_GNOME= gtk20 intltool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-gnome
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -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:net/tightvnc
.endif
.if ${PORT_OPTIONS:MXNEST}
RUN_DEPENDS+= Xnest: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/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>