blob: fceccde03bf73632382fc520ba97f68f596d7fc7 (
plain)
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
57
58
59
|
# 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= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-0.9.4
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= 20110320
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>
ONLY_FOR_ARCHS= i386 amd64
ONLY_FOR_ARCHS_REASON= does not configure except on i386 amd64
.if ${ARCH} == "i386" || ${ARCH} == "amd64"
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>
|