summaryrefslogtreecommitdiff
path: root/security/srp_client/Makefile
blob: 2f7f31f5a2f8a98318cb6fb7b95f99cdd8e7a358 (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
# $NetBSD: Makefile,v 1.5 2000/08/23 23:24:07 wiz Exp $
#

DISTNAME=		srp-1.4.4
PKGNAME=		srp-client-1.4.4
CATEGORIES=		security net
MASTER_SITES=		ftp://paris.arcot.com/pub/srp/ \
			ftp://srp.stanford.edu/pub/srp/ \
			ftp://labrea.stanford.edu/pub/srp/ \
			http://www.nit.gwu.edu/srp/ \
			ftp://ftp.kfki.hu/pub/packages/security/srp/ \
			ftp://ftp.bandit.co.jp/pub/srp/ \
			ftp://ftp.win.or.jp/pub/network/security/srp/ \
			ftp://ftp.replay.com/pub/crypto/crypto/APPS/srp/

MAINTAINER=		jlam@netbsd.org
HOMEPAGE=		http://srp.stanford.edu/srp/

DEPENDS+=		gmp>=2.0.2:../../devel/gmp

RESTRICTED=             "Crypto; export-controlled"
NO_SRC_ON_FTP=	${RESTRICTED}

GNU_CONFIGURE=		yes

CPPFLAGS+=		-Dunix=1
CPPFLAGS+=		-I${LOCALBASE}/include	# gmp.h
LDFLAGS+=		-L${LOCALBASE}/lib	# libgmp.a

CONFIGURE_ARGS+=	--with-srp --with-cast --enable-loginf
CONFIGURE_ENV+=		CPPFLAGS="${CPPFLAGS}"

.if exists(/usr/lib/libkrb.a)
CONFIGURE_ARGS+=	--with-krb4

post-patch:
	for FILE in ftp/ftp/Makefile.in ftp/ftpd/Makefile.in		\
		telnet/configure telnet/configure.in;			\
	do								\
		cd ${WRKSRC} &&						\
		${SED}  -e "s,include/kerberos,include/kerberosIV,"	\
			-e "s,-ldes,-ldes -lroken -lcom_err,"		\
			$$FILE > $$FILE.patched &&			\
		${MV} $$FILE.patched $$FILE;				\
	done
.endif

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/telnet/telnet/telnet \
		${PREFIX}/bin/srptelnet
	${INSTALL_DATA} ${WRKSRC}/telnet/telnet/telnet.1 \
		${PREFIX}/man/man1/srptelnet.1
	${INSTALL_PROGRAM} ${WRKSRC}/ftp/ftp/ftp ${PREFIX}/bin/srpftp
	${INSTALL_DATA} ${WRKSRC}/ftp/ftp/ftp.M ${PREFIX}/man/man1/srpftp.1

.include "../../mk/bsd.pkg.mk"