blob: 171ad8e3838f605808234eed52cdbff427928a53 (
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
|
# $NetBSD: Makefile,v 1.22 1999/08/18 09:04:17 agc Exp $
#
DISTNAME= cvs-1.10
CATEGORIES= devel
MASTER_SITES= ftp://download.cyclic.com/pub/${DISTNAME}/
MAINTAINER= tv@netbsd.org
HOMEPAGE= http://www.cyclic.com/cvs/info.html
GNU_CONFIGURE= yes
USE_GTEXINFO= yes
BUILD_DEFS+= USE_KERBEROS4 USE_KERBEROS5 RCS_LOCALID
.include "../../mk/bsd.prefs.mk"
.if defined(USE_KERBEROS4)
CONFIGURE_ARGS+= --with-krb4=/usr --enable-encryption
.else
CONFIGURE_ARGS+= --with-krb4=no
.endif
.if defined(USE_KERBEROS5)
CONFIGURE_ARGS+= --with-gssapi
.else
CONFIGURE_ARGS+= --with-gssapi=no
.endif
.if defined(RCS_LOCALID)
CFLAGS+= -DLOCALID=\"\\\"${RCS_LOCALID}\\\"\"
.endif
CONFIGURE_ENV+= perl_path=${LOCALBASE}/bin/perl
INFO_FILES= cvs.info cvsclient.info
.include "../../mk/bsd.pkg.mk"
|