diff options
author | itojun <itojun> | 2000-09-23 21:25:06 +0000 |
---|---|---|
committer | itojun <itojun> | 2000-09-23 21:25:06 +0000 |
commit | 1b02853b9c63b932e72ccf2e2293e34b61de29b4 (patch) | |
tree | 45d854aee3ffd96c5d8c4f5b131f629390ff6930 /security/racoon/Makefile | |
parent | 77539d05ca7b01c9373609e4494dbaaafb1aab11 (diff) | |
download | pkgsrc-1b02853b9c63b932e72ccf2e2293e34b61de29b4.tar.gz |
upgrade to 9/23 snapshot.
changes: lots of stabilization (made during interop tests with bunch of
other implementations), certificate support improvement, security issue fix
(admin tcp port, without authentication, was open previously)
Diffstat (limited to 'security/racoon/Makefile')
-rw-r--r-- | security/racoon/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/security/racoon/Makefile b/security/racoon/Makefile index e7463189843..df666e69500 100644 --- a/security/racoon/Makefile +++ b/security/racoon/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.21 2000/09/12 15:32:06 itojun Exp $ +# $NetBSD: Makefile,v 1.22 2000/09/23 21:25:06 itojun Exp $ # -DISTNAME= racoon-20000913b +DISTNAME= racoon-20000923a CATEGORIES= security net MASTER_SITES= ftp://ftp.kame.net/pub/kame/misc/ @@ -45,9 +45,13 @@ CONFIGURE_ARGS+=--disable-ipv6 CONFIGURE_ARGS+=--sysconfdir=/etc/racoon pre-configure: - (cd ${WRKSRC}/../libipsec; make) + (cd ${WRKSRC}/../libipsec; ${MAKE}) post-install: + ${MKDIR} ${PREFIX}/share/doc/racoon + for i in FAQ README.certificate; do \ + ${INSTALL_DATA} ${WRKSRC}/doc/$$i ${PREFIX}/share/doc/racoon; \ + done ${MKDIR} ${PREFIX}/share/examples/racoon ${INSTALL_DATA} ${WRKSRC}/samples/racoon.conf.sample \ ${PREFIX}/share/examples/racoon |