58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.21 2004/01/20 12:22:19 agc Exp $
|
|
|
|
DISTNAME= irrd2.1.5
|
|
PKGNAME= irrd-2.1.5
|
|
EXTRACT_SUFX= .tgz
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.irrd.net/ \
|
|
ftp://ftp.merit.edu/radb/irrd/ \
|
|
ftp://ftp.merit.edu/radb/irrd/old_releases/
|
|
|
|
MAINTAINER= kim@tac.nyc.ny.us
|
|
HOMEPAGE= http://www.irrd.net/
|
|
COMMENT= Internet Routing Registry Daemon
|
|
|
|
DEPENDS+= gnupg-[0-9]*:../../security/gnupg
|
|
DEPENDS+= wget-[0-9]*:../../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
|
|
|
|
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/bin/perl%${PERL5}%' < $$i.bak > $$i ; \
|
|
done
|
|
|
|
post-install:
|
|
@cd ${WRKSRC}/programs/IRRd && ${MAKE} install-man
|
|
@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"
|