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

PORTNAME=   syncterm
PORTVERSION=    0.9.${PORTVER}
PORTREVISION=   1
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

LIB_DEPENDS=    cl:${PORTSDIR}/security/cryptlib

WRKSRC=     ${WRKDIR}/syncterm-${PORTVER}
USE_GMAKE=  yes
MAKEFILE=   GNUmakefile
PORTVER=    20070722
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>

MAKE_ARGS+= -C syncterm
MAKE_ARGS+= PREFIX="${PREFIX}"
MAKE_ARGS+= INSTALL_EXE="${INSTALL_PROGRAM}"
.if !defined(WITHOUT_X11)
USE_XLIB=   yes
.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>