summaryrefslogtreecommitdiff
path: root/comms/syncterm/Makefile
blob: a237f11025113af6d26e2df8c5835e599cdc8f5b (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
55
56
# New ports collection makefile for:	syncterm
# Date created:		3 October 2006
# Whom:			shurd
#
# $FreeBSD$
#

PORTNAME=	syncterm
PORTVERSION=	0.9.${PORTVER}
CATEGORIES=	comms
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=	${PORTNAME}
DISTNAME=	syncterm-src-${PORTVER}
EXTRACT_SUFX=	.tgz

MAINTAINER=	shurd@sasktel.net
COMMENT=	An ANSI-BBS terminal which supports telnet, rlogin, and SSH

WRKSRC=		${WRKDIR}/syncterm-${PORTVER}
USE_GMAKE=	yes
MAKEFILE=	GNUmakefile
PORTVER=	20080406
MAN1=		syncterm.1
MANCOMPRESSED=	yes

OPTIONS=	X11	"Build with X11 support"	on \
		SDL	"Build with SDL support"	on \
		DEBUG	"Build a debug version"		off

.include <bsd.port.pre.mk>

.if ${ARCH} == "i386"
 LIB_DEPENDS+=	cl:${PORTSDIR}/security/cryptlib
.else
 MAKE_ARGS+=	WITHOUT_CRYPTLIB=yes
.endif
MAKE_ARGS+=	WITHOUT_PORTAUDIO=yes
MAKE_ARGS+=	-C syncterm
MAKE_ARGS+=	PREFIX="${PREFIX}"
MAKE_ARGS+=	INSTALL_EXE="${INSTALL_PROGRAM}"
.if !defined(WITHOUT_X11)
USE_XORG=	x11
.else
MAKE_ARGS+=	NO_X=1
.endif
.if !defined(WITHOUT_SDL)
USE_SDL=	sdl
MAKE_ARGS+=	USE_SDL=1
.endif
.if defined(WITH_DEBUG)
MAKE_ARGS+=	DEBUG=1
.else
MAKE_ARGS+=	RELEASE=1
.endif

.include <bsd.port.post.mk>