blob: 74d1117c98c10c4ce8f75a214cbe85557b9d0d49 (
plain) (
blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# New ports collection makefile for: watchmen
# Date created: 2009-07-16
# Whom: Oleg Alexeenkov <proler@gmail.com>
#
# $FreeBSD$
#
PORTNAME= watchmen
PORTVERSION= 0.07
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
MAINTAINER= proler@gmail.com
COMMENT= Watch and restart daemons
LICENSE= GPLv3
RUN_DEPENDS+= p5-libwww>=6.04:${PORTSDIR}/www/p5-libwww
PERL_CONFIGURE= yes
OPTIONS_DEFINE= MYSQL PGSQL EMAIL
MYSQL_DESC= Want test mysql queries
PGSQL_DESC= Want test postgresql queries
EMAIL_DESC= report problems by email
USE_PERL5_RUN= yes
POD2MAN?= pod2man
MAN1= ${PORTNAME}.1
PLIST_FILES= \
bin/${PORTNAME} \
etc/${PORTNAME}.conf.dist \
%%SITE_PERL%%/%%PERL_ARCH%%/auto/App/watchmen/.packlist
PLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/App/watchmen \
%%SITE_PERL%%/%%PERL_ARCH%%/auto/App
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500805
RUN_DEPENDS+= p5-Time-HiRes>=0:${PORTSDIR}/devel/p5-Time-HiRes
.endif
.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL= yes
RUN_DEPENDS+= p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql
.endif
.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL= yes
RUN_DEPENDS+= p5-DBD-Pg>=2.19.2:${PORTSDIR}/databases/p5-DBD-Pg
.endif
.if ${PORT_OPTIONS:MEMAIL}
RUN_DEPENDS+= p5-Email-Send>=2.198:${PORTSDIR}/mail/p5-Email-Send
.endif
post-install:
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.dist ${PREFIX}/etc
.include <bsd.port.post.mk>
|