diff options
author | jlam <jlam> | 2002-06-25 06:43:50 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-06-25 06:43:50 +0000 |
commit | ca19a2882da154763ad76ee3dd91a628ee1e4213 (patch) | |
tree | 80d2038f70254493be8527a89ea26847b5d9d1a3 /security | |
parent | cde2cba3b4aa5100912f6f95d1306838f72e71e6 (diff) | |
download | pkgsrc-ca19a2882da154763ad76ee3dd91a628ee1e4213.tar.gz |
Back out previous and do it in a simpler way by setting PKG_SYSCONFSUBDIR
(the subdirectory of ${PKG_SYSCONFBASE} where all of the config files for
thii package will be found) to be "ssh".
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 10269a58090..e1f3eccac4b 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.75 2002/06/25 04:24:38 itojun Exp $ +# $NetBSD: Makefile,v 1.76 2002/06/25 06:43:50 jlam Exp $ DISTNAME= openssh-3.3p1 PKGNAME= openssh-3.3.0.1 @@ -41,9 +41,11 @@ SSH_PID_DIR.SunOS= /etc # Solaris doesn't have a /var/run SSH_PID_DIR= ${SSH_PID_DIR.${OPSYS}} .endif +PKG_SYSCONFSUBDIR= ssh + USE_BUILDLINK_ONLY= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}/ssh +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-pid-dir=${SSH_PID_DIR} CONFIGURE_ARGS+= --with-ssl-dir=${BUILDLINK_DIR} CONFIGURE_ARGS+= --with-tcp-wrappers=${BUILDLINK_DIR} @@ -96,11 +98,11 @@ PLIST_SRC+= ${.CURDIR}/PLIST.prng EGDIR= ${PREFIX}/share/examples/${PKGBASE} CONF_FILES= # empty .for FILE in ${CONFS} -CONF_FILES+= ${EGDIR}/${FILE} ${PKG_SYSCONFDIR}/ssh/${FILE} +CONF_FILES+= ${EGDIR}/${FILE} ${PKG_SYSCONFDIR}/${FILE} .endfor SUPPORT_FILES= # empty .for FILE in ${SUPPS} -SUPPORT_FILES+= ${EGDIR}/${FILE} ${PKG_SYSCONFDIR}/ssh/${FILE} +SUPPORT_FILES+= ${EGDIR}/${FILE} ${PKG_SYSCONFDIR}/${FILE} .endfor RCD_SCRIPTS= sshd |