pkgsrc/sysutils/munin-server/Makefile
jlam 4390d56940 Make it easier to build and install packages "unprivileged", where
the owner of all installed files is a non-root user.  This change
affects most packages that require special users or groups by making
them use the specified unprivileged user and group instead.

(1) Add two new variables PKG_GROUPS_VARS and PKG_USERS_VARS to
    unprivileged.mk.  These two variables are lists of other bmake
    variables that define package-specific users and groups.  Packages
    that have user-settable variables for users and groups, e.g. apache
    and APACHE_{USER,GROUP}, courier-mta and COURIER_{USER,GROUP},
    etc., should list these variables in PKG_USERS_VARS and PKG_GROUPS_VARS
    so that unprivileged.mk can know to set them to ${UNPRIVILEGED_USER}
    and ${UNPRIVILEGED_GROUP}.

(2) Modify packages to use PKG_GROUPS_VARS and PKG_USERS_VARS.
2007-07-04 20:54:31 +00:00

99 lines
2.7 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2007/07/04 20:55:00 jlam Exp $
#
DISTNAME= ${PKGNAME_NOREV:S:-server-:_:}
PKGNAME= munin-server-1.3.2
#PKGREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=munin/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://munin.sourceforge.net/
COMMENT= System monitoring tool, server version
DEPENDS+= p5-Date-Manip>=0:../../devel/p5-Date-Manip
DEPENDS+= p5-HTML-Template>=0:../../www/p5-HTML-Template
DEPENDS+= p5-Net-SSLeay>=0:../../security/p5-Net-SSLeay
DEPENDS+= rrdtool>=1.2:../../databases/rrdtool
DEPENDS+= munin-doc>=1.3.1:../../sysutils/munin-doc
USE_TOOLS+= gmake perl:run
USE_PKGINSTALL= YES
PERL5_CONFIGURE=NO
WRKSRC= ${WRKDIR}/${DISTNAME:S:_:-:}
CHECK_PORTABILITY_SKIP+= node/node.d/*
PKG_GROUPS_VARS+= MUNIN_GROUP
PKG_USERS_VARS+= MUNIN_USER
MUNIN_GROUP?= munin
MUNIN_USER?= munin
PKG_GROUPS= ${MUNIN_GROUP}
PKG_USERS= ${MUNIN_USER}:${MUNIN_GROUP}::Munin\\ user
PKG_SYSCONFSUBDIR?= munin
STATEDIR= ${VARBASE}/munin/plugin-state
MAKE_DIRS= ${VARBASE}/munin
MAKE_DIRS+= ${VARBASE}/run/munin
MAKE_DIRS+= ${VARBASE}/log/munin
MAKE_DIRS+= ${STATEDIR}
OWN_DIRS= ${VARBASE}/munin
OWN_DIRS+= ${VARBASE}/run/munin
OWN_DIRS+= ${VARBASE}/log/munin
OWN_DIRS+= ${VARBASE}/munin/plugin-state
OWN_DIRS_PERMS+=${VARBASE}/munin ${MUNIN_USER} ${MUNIN_GROUP} 0755
OWN_DIRS_PERMS+=${VARBASE}/run/munin ${MUNIN_USER} ${MUNIN_GROUP} 0755
OWN_DIRS_PERMS+=${VARBASE}/log/munin ${MUNIN_USER} ${MUNIN_GROUP} 0755
OWN_DIRS_PERMS+=${VARBASE}/munin/plugin-state ${MUNIN_USER} ${MUNIN_GROUP} 0775
BUILD_DEFS+= VARBASE
INSTALL_TARGET= install-main
BUILD_TARGET= build
PERL5_SITELIB= ${PERL5_SUB_INSTALLVENDORLIB:Q}
MAKE_ENV+= PERL5_SITELIB=${PREFIX}/${PERL5_SITELIB}
MAKE_ENV+= CONFDIR=${PKG_SYSCONFDIR}
MAKE_ENV+= MUNIN_USER=${MUNIN_USER}
MAKE_ENV+= MUNIN_GROUP=${MUNIN_GROUP}
MAKE_ENV+= PERL5=${PERL5:Q}
FILES_SUBST+= PERL=${PERL5:Q}
FILES_SUBST+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR}
FILES_SUBST+= STATEDIR=${STATEDIR}
PLIST_SUBST+= PERL5_SITELIB=${PERL5_SITELIB:Q}
MESSAGE_SUBST+= MUNIN_USER=${MUNIN_USER:Q}
MESSAGE_SUBST+= VARBASE=${VARBASE:Q}
EGDIR= ${PREFIX}/share/examples/munin
TMPL_EGDIR= ${EGDIR}/templates
INST_TMPL_DIR= ${PKG_SYSCONFDIR}/templates
CONF_FILES+= ${EGDIR}/munin.conf ${PKG_SYSCONFDIR}/munin.conf
TMPL_FILES= definitions.html logo.png munin-comparison-day.tmpl \
munin-comparison-month.tmpl munin-comparison-week.tmpl \
munin-comparison-year.tmpl munin-domainview.tmpl \
munin-nodeview.tmpl munin-overview.tmpl \
munin-serviceview.tmpl style.css
.for f in ${TMPL_FILES}
CONF_FILES+= ${TMPL_EGDIR}/${f} ${INST_TMPL_DIR}/${f}
.endfor
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/build/server/munin.conf ${EGDIR}
.include "../../mk/bsd.pkg.mk"
.include "../../lang/perl5/module.mk"