blob: 5bd5a4276e44ca5d3fffa17307c8699493928db1 (
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
|
# $NetBSD: Makefile,v 1.18 2006/06/06 12:33:52 ghen Exp $
#
DISTNAME= gld-1.6
PKGREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://www.gasmi.net/down/
EXTRACT_SUFX= .tgz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.gasmi.net/
COMMENT= Standalone greylisting server for Postfix
GNU_CONFIGURE= yes
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
CONF_FILES_PERMS= ${EGDIR}/gld.conf ${PKG_SYSCONFDIR}/gld.conf \
${BINOWN} ${GLD_GROUP} 0740
RCD_SCRIPTS= gld
GLD_USER?= gld
GLD_GROUP?= gld
PKG_GROUPS= ${GLD_GROUP}
PKG_USERS= ${GLD_USER}:${GLD_GROUP}
PKG_GECOS.${GLD_USER}= Greylisting Daemon user
BUILD_DEFS+= GLD_USER GLD_GROUP
SUBST_CLASSES+= gld users
SUBST_STAGE.gld= post-patch
SUBST_FILES.gld= gld.h
SUBST_SED.gld= -e "s,/etc,${PKG_SYSCONFDIR},"
SUBST_MESSAGE.gld= Fixing harcoded paths.
SUBST_STAGE.users= post-patch
SUBST_FILES.users= gld.conf
SUBST_SED.users+= -e "s|^USER=nobody|USER=${GLD_USER}|"
SUBST_SED.users+= -e "s|^GROUP=nobody|GROUP=${GLD_GROUP}|"
SUBST_MESSAGE.users= Adjusting user/group in configuration file.
.include "options.mk"
.include "../../mk/bsd.pkg.mk"
|