pkgsrc/sysutils/webmin/wbm.mk
jlam e811379bc2 Pluralize INSTALL_TEMPLATE and DEINSTALL_TEMPLATE variable names as per
the pkglint warning:

    As {INSTALL,DEINSTALL}_TEMPLATE is modified using "+=", its name
    should indicate plural.

This does make the variables a bit more suggestive of the fact that they
hold lists of values.
2006-06-15 22:13:58 +00:00

61 lines
1.8 KiB
Makefile

# $NetBSD: wbm.mk,v 1.5 2006/06/15 22:13:59 jlam Exp $
#
# Makefile fragment for Webmin modules
PKGNAME?= wbm-${DISTNAME}
CATEGORIES+= sysutils www
MASTER_SITES?= http://download.webmin.com/download/modules/
EXTRACT_SUFX?= .wbm.gz
EXTRACT_OPTS+= -f tar
MAINTAINER?= pkgsrc-users@NetBSD.org
USE_TOOLS+= perl:run
DEPENDS+= webmin>=1.270:../../sysutils/webmin
EVAL_PREFIX+= PREFIX.webmin=webmin
WEBMIN_DIR= ${PREFIX.webmin}/share/webmin
WEBMIN_EGDIR= ${PREFIX.webmin}/share/examples/webmin
WEBMIN_VARDIR= ${VARBASE}/webmin
WBM_DIR= ${PREFIX}/share/webmin
WBM_EGDIR= ${PREFIX}/share/examples/webmin
WRKSRC?= ${WRKDIR}/${WBMNAME}
PKG_SYSCONFSUBDIR= webmin
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/${WBMNAME} \
${ROOT_USER} ${ROOT_GROUP} 0700
CONF_FILES_PERMS+= ${WBM_EGDIR}/${WBMNAME}/config \
${PKG_SYSCONFDIR}/${WBMNAME}/config \
${ROOT_USER} ${ROOT_GROUP} 0600
FILES_SUBST+= WBMNAME=${WBMNAME:Q}
FILES_SUBST+= WEBMIN_DIR=${WEBMIN_DIR:Q}
FILES_SUBST+= WEBMIN_VARDIR=${WEBMIN_VARDIR:Q}
DEINSTALL_TEMPLATES+= ${PKGSRCDIR}/sysutils/webmin/files/wbm-deinstall.tmpl
# WBMNAME is the name of the module directory
WBMNAME?= ${DISTNAME}
WEBMIN_OSTYPE_cmd= ${AWK} '/^os_type=/ {sub("os_type=",""); print}' \
${WEBMIN_EGDIR}/config
WEBMIN_OSVERSION_cmd= ${AWK} '/^os_version=/ {sub("os_version=",""); print}' \
${WEBMIN_EGDIR}/config
.PHONY: wbm-configure wbm-build wbm-install
wbm-configure:
${FIND} ${WRKSRC} -name "*.orig" -print | ${XARGS} ${RM} -f
wbm-build:
${FIND} ${WRKSRC} -name '*.cgi' -print -o -name '*.pl' -print | \
${PERL5} ${WEBMIN_DIR}/perlpath.pl ${PERL5} -
wbm-install:
${CP} -R ${WRKSRC} ${WBM_DIR}/.
${PERL5} ${WEBMIN_DIR}/copyconfig.pl \
${WEBMIN_OSTYPE_cmd:sh:Q} ${WEBMIN_OSVERSION_cmd:sh:Q} \
${WBM_DIR}/${WBM_NAME} ${WBM_EGDIR} ${WBMNAME}
do-configure: wbm-configure
do-build: wbm-build
do-install: wbm-install