blob: e99881ea9092106aa5172fa5961b8b8bf9920a4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: bsd.pkg.obsolete.mk,v 1.8 2002/02/05 04:12:07 jlam Exp $
#
# This file holds make(1) logic to allow obsolete or deprecated variables
# still to be used. These may eventually disappear over time as the contents
# are, by definition, obsolete and deprecated.
.if defined(APACHE_USER)
APACHE_SUEXEC_USER?= ${APACHE_USER}
.endif
.if defined(APACHE_SYSCONFDIR)
PKG_SYSCONFDIR.ap-ssl?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.apache?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.apache6?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.apc-gui?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.cvsweb?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.imp?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.horde?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.p5-HTTPD-User-Manage?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.squirrelmail?= ${APACHE_SYSCONFDIR}
PKG_SYSCONFDIR.stripes?= ${APACHE_SYSCONFDIR}
.endif
.if defined(PHP_CONFDIR)
PKG_SYSCONFDIR.php?= ${PHP_CONFDIR}
.endif
.if defined(SSH_CONF_DIR)
PKG_SYSCONFDIR.openssh?= ${SSH_CONF_DIR}
PKG_SYSCONFDIR.ssh?= ${SSH_CONF_DIR}
.endif
.if defined(VTUN_SYSCONFDIR)
PKG_SYSCONFDIR.vtun?= ${VTUN_SYSCONFDIR}
.endif
.if defined(POSTFIX_USE_SASL_AUTH)
USE_SASL= YES
.endif
.if defined(SAMBA_WITH_CUPS)
USE_CUPS= YES
.endif
|