pkgsrc/security/isakmpd/Makefile
agc d1cf13dbac Update to isakmpd version 20030903.
No changelog available, but many bugs fixed, and these sources will
compile with gcc-3.3.1 (well, after I tweaked them).  With thanks to
Christoph Badura for most of this work, I merely did the gcc-3.3.1
patching.
2003-10-10 12:56:18 +00:00

51 lines
1.6 KiB
Makefile

# $NetBSD: Makefile,v 1.30 2003/10/10 12:56:18 agc Exp $
#
DISTNAME= isakmpd-20030903
CATEGORIES= security net
MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/packages/distfiles/LOCAL_PORTS/
MAINTAINER= itojun@kame.net
COMMENT= OpenBSD IKE daemon
# this is not compatible with cross build - there's no other way
.if !exists(/usr/include/netinet6/ipsec.h)
PKG_FAIL_REASON+= "${PKGNAME} requires ipsec-ready ${OPSYS}"
.endif
WRKSRC= ${WRKDIR}/isakmpd
ALL_TARGET= depend all
USE_BUILDLINK2= YES
USE_PKGINSTALL= YES
MAKE_ENV+= BINDIR=${PREFIX}/sbin MANDIR=${PREFIX}/man
PKG_SYSCONFSUBDIR= isakmpd
RCD_SCRIPTS= isakmpd
RCD_SCRIPT_WRK.isakmpd= ${WRKDIR}/isakmpd.sh
pre-configure:
@${ECHO_MSG} "Fixing references to buildlink directories"
@for i in ${WRKSRC}/sysdep/netbsd/Makefile.sysdep; do \
${MV} $${i} $${i}.unfixed; \
${SED} "s+@BUILDLINK_PREFIX.openssl@+${BUILDLINK_PREFIX.openssl}+g" \
< $${i}.unfixed > $${i}; \
done
@${ECHO_MSG} "Fixing references to configuration directory"
@for i in conf.h policy.h ike_auth.h; do \
${MV} ${WRKSRC}/$${i} ${WRKSRC}/$${i}.unfixed; \
${SED} "s+/etc/isakmpd+${PKG_SYSCONFDIR}+g" \
< ${WRKSRC}/$${i}.unfixed > ${WRKSRC}/$${i}; \
done
@${ECHO_MSG} "Fixing manual page references"
@for i in isakmpd.8 isakmpd.conf.5 isakmpd.policy.5; do \
${MV} ${WRKSRC}/$${i} ${WRKSRC}/$${i}.unfixed; \
${SED} -e "s+/usr/share/ipsec+${PREFIX}/share/examples+g" \
-e "s+/etc/isakmpd+${PKG_SYSCONFDIR}+g" \
< ${WRKSRC}/$${i}.unfixed > ${WRKSRC}/$${i}; \
done
.include "../../security/openssl/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"