aboutsummaryrefslogtreecommitdiffstats
path: root/net/tsclient/Makefile
blob: eb3dd1915e345a21fc848880b89735c235be5371 (plain) (blame)
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
# 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 intltool
USES=       gettext gmake libtool pathfix pkgconfig
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --disable-gnome
CPPFLAGS+=  -I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`
LIBS+=      -L${LOCALBASE}/lib `pkg-config --libs libgnomeui-2.0`

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>