blob: 6d8d954dfcb33ddf082d3f5af5355adbb3766d67 (
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
41
|
# $NetBSD: Makefile,v 1.23 2017/06/05 14:24:26 ryoon Exp $
#
DISTNAME= spreadlogd
PKGNAME= spreadlogd-2.0.0
PKGREVISION= 20
CATEGORIES= net
MASTER_SITES= http://www.backhand.org/mod_log_spread/
DIST_SUBDIR= ${PKGNAME_NOREV}
MAINTAINER= mark@exonetric.com
HOMEPAGE= http://www.backhand.org/mod_log_spread/
COMMENT= Daemon to log to file, messages from spread toolkit clients
GNU_CONFIGURE= yes
USE_TOOLS+= perl:run yacc
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
RCD_SCRIPTS= spreadlogd
# define the "example" directory for post-install target and for the CONF_FILES
# variable used by pkginstall
EXAMPLEDIR= ${PREFIX}/share/examples/spreadlogd
# tell pkginstall where to pluck virgin configuration files from in the case of a new
# install, knowing that the post-install target in *this* Makefile will put the
# sample configuration in the example directory for us (as well as creating it)
CONF_FILES+= ${EXAMPLEDIR}/spreadlogd.conf.sample ${PKG_SYSCONFDIR}/spreadlogd.conf
INSTALLATION_DIRS+= ${EXAMPLEDIR}
# create example directory *and* put the sample configuration file here with the suffix
# .sample so that pkginstall can drop it in for us.
post-install:
${INSTALL_DATA} ${WRKSRC}/spreadlogd.conf ${DESTDIR}${EXAMPLEDIR}/spreadlogd.conf.sample
BUILDLINK_API_DEPENDS.libevent+=libevent>=1.0c
.include "../../net/spread/buildlink3.mk"
.include "../../devel/libevent/buildlink3.mk"
.include "../../lang/perl5/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|