summaryrefslogtreecommitdiff
path: root/net/speakfreely/Makefile
blob: 239646820d8ebf8e4aadebf5d62afc3025508cd3 (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
60
61
62
63
64
65
66
67
# $NetBSD: Makefile,v 1.17 2004/12/15 22:37:39 jlam Exp $
#

DISTNAME=		speak_freely-7.2
PKGNAME=		speakfreely-7.2
PKGREVISION=		3
CATEGORIES=		net audio
MASTER_SITES=		http://www.fourmilab.ch/speakfree/unix/

MAINTAINER=		johnam@mail.kemper.org
HOMEPAGE=		http://www.fourmilab.ch/speakfree/unix/
COMMENT=		Internet "phone" for UNIX

USE_BUILDLINK3=		YES
NO_CONFIGURE=		YES
USE_PERL5=		YES

BUILD_DEFS+=		SPEAKFREELY_OPTIONS USE_CRYPTO USE_IDEA

.include "../../mk/bsd.prefs.mk"

USE_CRYPTO?=		YES
USE_IDEA?=		NO

# SPEAKFREELY_OPTIONS is a space-separated list of compile-time options
# to support.  Currently supported options:
#
#	halfduplex	for if sound card doesn't support full-duplex sound
#
SPEAKFREELY_OPTIONS?=   halfduplex

.if ${SPEAKFREELY_OPTIONS:Mhalfduplex} == "halfduplex"
CCFLAGS+=		-DHALF_DUPLEX
.endif

.if defined(USE_CRYPTO) && ${USE_CRYPTO} == "YES"
HAVE_LIBCRYPTO=		YES
USE_OLD_DES_API=	YES
.include "../../security/openssl/buildlink3.mk"

.if defined(USE_IDEA) && ${USE_IDEA} == "YES"
LICENSE=		no-commercial-use
.endif
.endif

SOUNDDIR=	${PREFIX}/share/speakfreely
MAKE_ENV+=	PERL="${PERL5}" CCFLAGS="${CCFLAGS}" \
		SOUNDDIR="${SOUNDDIR}"
MAKE_ENV+=	USE_CRYPTO="${USE_CRYPTO}" HAVE_LIBCRYPTO="${HAVE_LIBCRYPTO}" \
		SSLBASE="${SSLBASE}" USE_IDEA="${USE_IDEA}"
MAKE_ENV+=	HAVE_GSM=YES HAVE_MD5=YES
MAKE_ENV+=	DOMAIN=

post-extract:
	${MV} ${WRKSRC}/sfspeaker.1 ${WRKSRC}/sfspeaker.1.in

pre-build:
	${SED} -e "s,@SOUNDDIR@,${SOUNDDIR},g" \
		< ${WRKSRC}/sfspeaker.1.in > ${WRKSRC}/sfspeaker.1

post-install:
	${INSTALL_DATA_DIR} ${SOUNDDIR}
	${INSTALL_DATA} ${WRKSRC}/busy.au ${SOUNDDIR}
	${INSTALL_DATA} ${WRKSRC}/ring.au ${SOUNDDIR}

.include "../../audio/gsm/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"