blob: 249ec829b3a98b8529d75ef7a83503f4e2c026f7 (
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
|
# $NetBSD: Makefile,v 1.15 2001/06/11 06:34:45 jlam Exp $
#
DISTNAME= irrd2.0a-Aug22-2000
PKGNAME= irrd-2.0.0.20000822
CATEGORIES= net
MASTER_SITES= ftp://ftp.merit.edu/radb/irrd/source/ \
ftp://ftp.merit.edu/radb/irrd/source/old_releases/
MAINTAINER= kim@tac.nyc.ny.us
HOMEPAGE= http://www.irrd.net/
COMMENT= Internet Routing Registry Daemon
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
BUILD_DEPENDS+= bison-*:../../devel/bison
DEPENDS+= gdbm-*:../../databases/gdbm
DEPENDS+= pgp5-*:../../security/pgp5
DEPENDS+= wget-*:../../net/wget
USE_PERL5= # defined
WRKSRC= ${WRKDIR}/${DISTNAME}/src
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-gdbm
CONFIGURE_ARGS+=--disable-thread
CONFIGURE_ENV+= YACC=bison
CPPFLAGS+= -I${LOCALBASE}/include
CFLAGS+= -g
pre-configure:
cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf
IRRD_CACHER= irrdcacher ripe2rpsl update_source
post-build:
@cd ${WRKSRC}/programs/irrdcacher ; \
set -x ; \
for i in ${IRRD_CACHER} ; \
do \
${MV} $$i $$i.bak ; \
${SED} -e 's%/usr/local/bin/perl%${PERL5}%' < $$i.bak > $$i ; \
done
post-install:
@cd ${WRKSRC}/programs/irrdcacher ; \
set -x ; \
for i in ${IRRD_CACHER} ; \
do \
${INSTALL_SCRIPT} $$i ${PREFIX}/sbin ; \
done
.include "../../mk/bsd.prefs.mk"
.if defined(USE_INET6) && ${USE_INET6} == "YES"
# default
# CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.include "../../mk/bsd.pkg.mk"
|