diff options
author | jlam <jlam@pkgsrc.org> | 2002-01-06 19:41:28 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-01-06 19:41:28 +0000 |
commit | d2f8d73e5a3bafcd91b6028817f008fb60fef75f (patch) | |
tree | adbc8af75419007af85af004196c27da1d086d24 /print/cups | |
parent | 50eea9f567e592eda5d2ec0e5c06c777a7643467 (diff) | |
download | pkgsrc-d2f8d73e5a3bafcd91b6028817f008fb60fef75f.tar.gz |
The configure script auto-appends "cups" to "sysconfdir", so pass
"${PKG_SYSCONFBASE}" to the script and set PKG_SYSCONFSUBDIR directly to
"cups".
Diffstat (limited to 'print/cups')
-rw-r--r-- | print/cups/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index f7a3b7251f5..960221f3f0c 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2001/12/14 23:18:15 jlam Exp $ +# $NetBSD: Makefile,v 1.44 2002/01/06 19:41:28 jlam Exp $ DISTNAME= cups-${DIST_VERS}-source PKGNAME= cups-${VERS} @@ -25,7 +25,7 @@ USE_BUILDLINK_ONLY= YES USE_GMAKE= YES USE_LIBTOOL= YES GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASE} CONFIGURE_ARGS+= --localstatedir=/var CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/html/cups CONFIGURE_ARGS+= --with-cups-user=${CUPS_USER} @@ -60,7 +60,8 @@ BUILD_DEFS+= CUPS_USER CUPS_GROUP DOCDIR= ${PREFIX}/share/doc/cups EGDIR= ${PREFIX}/share/examples/cups -CUPS_CONFDIR= ${PKG_SYSCONFDIR}/cups +PKG_SYSCONFSUBDIR= cups +CUPS_CONFDIR= ${PKG_SYSCONFDIR} CUPS_LOGDIR= /var/log/cups CUPS_REQUESTS= /var/spool/cups |