diff options
author | adam <adam@FreeBSD.org> | 1996-08-29 04:17:34 +0000 |
---|---|---|
committer | adam <adam@FreeBSD.org> | 1996-08-29 04:17:34 +0000 |
commit | a8b8eedfe02b8e55f82e4fa45c172b39415ebf4e (patch) | |
tree | 084a7d94b6b1e4ea0d8d10f4a805fe3be14e9089 /www/wn/Makefile | |
parent | 370ce7cc533e402992064d4b0b1b47018a54cd0d (diff) | |
download | FreeBSD-ports-a8b8eedfe02b8e55f82e4fa45c172b39415ebf4e.zip FreeBSD-ports-a8b8eedfe02b8e55f82e4fa45c172b39415ebf4e.tar.gz |
new version 1.14.6
added 'authwn' passwd authentication module.
this can handle ascii or .db formats
added 'mkpasswd' script (requires perl5 for .db format)
Diffstat (limited to 'www/wn/Makefile')
-rw-r--r-- | www/wn/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/www/wn/Makefile b/www/wn/Makefile index 8f2c273..2927f7c 100644 --- a/www/wn/Makefile +++ b/www/wn/Makefile @@ -3,10 +3,10 @@ # Date created: 4 May 1995 # Whom: adam # -# $Id: Makefile,v 1.12 1996/05/26 18:10:21 adam Exp $ +# $Id: Makefile,v 1.13 1996/08/16 01:27:23 adam Exp $ # -DISTNAME= wn-1.14.5 +DISTNAME= wn-1.14.6 CATEGORIES+= www MASTER_SITES= ftp://ftp.acns.nwu.edu/pub/wn/ @@ -18,11 +18,13 @@ pre-patch: @cp ${WRKSRC}/config.h.dist ${WRKSRC}/config.h post-install: - @mkdir -p ${PREFIX}/wn/wnlogs + @mkdir -p ${PREFIX}/wn/wnlogs ${PREFIX}/wn/bin @cp -PR ${WRKSRC}/docs ${PREFIX}/wn @install -c -o bin -g bin ${WRKSRC}/bin/wn ${PREFIX}/libexec @install -c -o bin -g bin ${WRKSRC}/bin/swn ${PREFIX}/sbin @install -c -o bin -g bin ${WRKSRC}/bin/wndex ${PREFIX}/bin + @install -c -o bin -g bin ${WRKSRC}/bin/mkpasswd ${PREFIX}/wn/bin + @install -c -o bin -g bin ${WRKSRC}/bin/authwn ${PREFIX}/wn/bin @if [ -s ${PREFIX}/etc/wn_mime.types ]; then \ cmp -s ${PREFIX}/etc/wn_mime.types ${WRKSRC}/lib/mime.types || \ echo Warning: new ${PREFIX}/etc/wn_mime.types not installed; \ |