diff options
author | tron <tron@pkgsrc.org> | 2002-10-13 07:57:43 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-10-13 07:57:43 +0000 |
commit | ca15a606936e77a622fe3cea59bf82e2d3681081 (patch) | |
tree | 115d866e622800252a873c6fec21b5ecf3c780e5 /news | |
parent | 5c4953978d44bb8a532ec4c5addc9c96a21dac2c (diff) | |
download | pkgsrc-ca15a606936e77a622fe3cea59bf82e2d3681081.tar.gz |
Honor environment variable "INN_SPOOL" documented in the description file.
Problem noted by Kimmo Suominen in private e-mail.
Diffstat (limited to 'news')
-rw-r--r-- | news/inn/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index b2cb0dc3fe7..9b1ffdf135e 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2002/09/29 10:41:36 jlam Exp $ +# $NetBSD: Makefile,v 1.39 2002/10/13 07:57:43 tron Exp $ DISTNAME= inn-2.3.3 CATEGORIES= news @@ -17,6 +17,7 @@ PATCHFILES= inn-2.3.3-v6-20020618.diff.gz PATCH_DIST_STRIP= -p1 INN_DATA_DIR?= /var/news +INN_SPOOL?= ${INN_DATA_DIR}/spool BUILD_DEFS+= INN_DATA_DIR FILES_SUBST+= INN_DATA_DIR=${INN_DATA_DIR} @@ -31,7 +32,7 @@ CONFIGURE_ARGS+= --enable-setgid-inews \ --with-etc-dir=${INN_DATA_DIR}/etc \ --with-log-dir=${INN_DATA_DIR}/log \ --with-run-dir=${INN_DATA_DIR}/run \ - --with-spool-dir=${INN_DATA_DIR}/spool + --with-spool-dir=${INN_SPOOL} CONFIGURE_ENV+= _PATH_PERL=${PERL5} PKG_USERS= news:news::Internet\\ News:${INN_DATA_DIR}:${SH} |