diff options
author | jlam <jlam@pkgsrc.org> | 2001-11-25 18:59:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-11-25 18:59:45 +0000 |
commit | ffceca11a9acb11623d00829c993ca1022b4d164 (patch) | |
tree | 78f3dfe5e355bfe3bf2e730202f3d29cb7da98d5 /www/apc-gui | |
parent | cfd5b704a70497d2c14d5e85256db8adea34f050 (diff) | |
download | pkgsrc-ffceca11a9acb11623d00829c993ca1022b4d164.tar.gz |
PKG_SYSCONFDIR is where the configuration files for a package may be found.
This value may be customized in various ways:
PKG_SYSCONFBASE is the main config directory under which all package
configuration files are to be found.
PKG_SYSCONFSUBDIR is the subdirectory of PKG_SYSCONFBASE under which the
configuration files for a particular package may be found.
PKG_SYSCONFDIR.${PKGBASE} overrides the value of ${PKG_SYSCONFDIR} for a
particular package.
Users will typically want to set PKG_SYSCONFBASE to /etc, or accept the
default location of ${PREFIX}/etc.
This obsoletes the use of CONFDIR, which was active for only 6 days, so no
need to have a workaround to still accept old CONFDIR settings.
Diffstat (limited to 'www/apc-gui')
-rw-r--r-- | www/apc-gui/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/www/apc-gui/Makefile b/www/apc-gui/Makefile index d96e6601e43..b77c551d4e5 100644 --- a/www/apc-gui/Makefile +++ b/www/apc-gui/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/11/19 16:23:14 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2001/11/25 18:59:49 jlam Exp $ DISTNAME= apc_gui-1.0.3 PKGNAME= ${DISTNAME:S/_/-/} @@ -14,18 +14,14 @@ DEPENDS+= php-gd>=4.0.1:../../graphics/php4-gd NO_BUILD= YES -APACHE_SYSCONFDIR?= ${CONFDIR}/httpd -BUILD_DEFS+= APACHE_SYSCONFDIR -MESSAGE_SUBST+= APACHE_SYSCONFDIR=${APACHE_SYSCONFDIR} - +PKG_SYSCONFSUBDIR?= httpd APC_GUI_DIR= ${PREFIX}/share/${PKGBASE} EGDIR= ${PREFIX}/share/examples/${PKGBASE} PLIST_SUBST+= PKGBASE=${PKGBASE} MESSAGE_SUBST+= APC_GUI_DIR=${APC_GUI_DIR} -CONF_FILES= ${EGDIR}/apc_gui.conf ${APACHE_SYSCONFDIR}/apc_gui.conf +CONF_FILES= ${EGDIR}/apc_gui.conf ${PKG_SYSCONFDIR}/apc_gui.conf CONF_FILES+= /dev/null ${APC_GUI_DIR}/apc_config_local.php -MAKE_DIRS= ${APACHE_SYSCONFDIR} OWN_DIRS= ${APC_GUI_DIR} pre-install: |