blob: 2d891964dbaf4164d91150535427427bb7656c44 (
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
|
# $NetBSD: Makefile,v 1.34 2012/10/23 17:19:08 asau Exp $
#
DISTNAME= sendfile-2.1b
PKGREVISION= 2
CATEGORIES= net
MASTER_SITES= http://fex.rus.uni-stuttgart.de/download/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://fex.rus.uni-stuttgart.de/saft/sendfile.html
COMMENT= Implementation of the Simple asynchronous file transfer protocol
LICENSE= gnu-gpl-v2
CONFLICTS= jabberd2-[0-9]*
#WRKSRC= ${WRKDIR}/sendfile-2.1b
DIST_SUBDIR= ${PKGNAME_NOREV}
EGDIR= ${PREFIX}/share/examples/sendfile
CONF_FILES= ${EGDIR}/sendfile.cf ${PKG_SYSCONFDIR}/sendfile.cf
CONF_FILES+= ${EGDIR}/sendfile.deny ${PKG_SYSCONFDIR}/sendfile.deny
OVERRIDE_GNU_CONFIG_SCRIPTS= yes
SUBST_CLASSES+= makeconfig
SUBST_STAGE.makeconfig= pre-configure
SUBST_FILES.makeconfig= makeconfig
SUBST_VARS.makeconfig= PREFIX PKG_SYSCONFBASEDIR
post-configure:
cd ${WRKSRC} &&${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} config
OWN_DIRS+= ${VARBASE}/spool/sendfile
OWN_DIRS_PERMS+=${VARBASE}/spool/sendfile/LOG ${ROOT_USER} ${ROOT_GROUP} 700
OWN_DIRS_PERMS+=${VARBASE}/spool/sendfile/OUTGOING ${ROOT_USER} ${ROOT_GROUP} 1777
.include "../../mk/bsd.pkg.mk"
|