diff options
author | jlam <jlam@pkgsrc.org> | 2005-08-19 18:12:36 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-08-19 18:12:36 +0000 |
commit | bd2788d930980fb7fff304fa568751d0f69d819b (patch) | |
tree | 41d5fc337098f380e5f2c0106fb2d4d88fd977eb /www/iasp | |
parent | e956158a4eb6d5a4d218d8ed22d012b1f05a74c6 (diff) | |
download | pkgsrc-bd2788d930980fb7fff304fa568751d0f69d819b.tar.gz |
Merge CONF_FILES/SUPPORT_FILES and CONF_FILES_PERMS/SUPPORT_FILES_PERMS
as the INSTALL and DEINSTALL scripts no longer distinguish between
the two types of files. Drop SUPPORT_FILES{,_PERMS} and modify the
packages in pkgsrc accordingly.
Diffstat (limited to 'www/iasp')
-rw-r--r-- | www/iasp/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/www/iasp/Makefile b/www/iasp/Makefile index d322a74c5b8..e4d6ed138aa 100644 --- a/www/iasp/Makefile +++ b/www/iasp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2005/07/15 18:27:54 jlam Exp $ +# $NetBSD: Makefile,v 1.9 2005/08/19 18:12:39 jlam Exp $ .include "../iasp/Makefile.common" @@ -31,16 +31,16 @@ USE_PKGINSTALL= yes OWN_DIRS= ${IASP_DESTDIR} OWN_DIRS_PERMS= ${IASP_DESTDIR}/logs ${IASP_USER} ${IASP_GROUP} 0750 CONFDIR= ${IASP_DESTDIR}/properties -SFILES= cdonts.properties dbserver.properties -SFILES+= ejb.properties loadbalance.properties -SFILES+= msmq.properties rules.properties -SFILES+= security.properties server.properties -SFILES+= servlets.properties -SUPPORT_FILES= # empty -.for FILE in ${SFILES} -SUPPORT_FILES+= ${CONFDIR}/${FILE}.default ${CONFDIR}/${FILE} +CFILES= cdonts.properties dbserver.properties +CFILES+= ejb.properties loadbalance.properties +CFILES+= msmq.properties rules.properties +CFILES+= security.properties server.properties +CFILES+= servlets.properties +CONF_FILES= # empty +.for FILE in ${CFILES} +CONF_FILES+= ${CONFDIR}/${FILE}.default ${CONFDIR}/${FILE} .endfor -SUPPORT_FILES+= /dev/null ${IASP_DESTDIR}/properties/license +CONF_FILES+= /dev/null ${IASP_DESTDIR}/properties/license RCD_SCRIPTS= iasp iasp_admin post-extract: |