blob: 727733bf9e5d19a3c66aa4e04c6ff4583a434dff (
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
|
# New ports collection makefile for: pftabled
# Date created: 2006-11-21
# Whom: Bartlomiej Rutkowski <r@robakdesign.com>
#
# $FreeBSD$
#
PORTNAME= pftabled
PORTVERSION= 1.09
CATEGORIES= net-mgmt
MASTER_SITES= http://www.wolfermann.org/
MAINTAINER= chifeng@gmail.com
COMMENT= The pftabled is a tool to manage your pf tables remotely
USE_RC_SUBR= pftabled
MAN1= pftabled.0
PLIST_FILES= bin/pftabled-client sbin/pftabled
GNU_CONFIGURE= yes
USE_GMAKE= yes
OPTIONS= PERLC "A Sample Perl Client" on \
PYTHONC "A Sample Python Client" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_PERLC)
. if ${PERL_LEVEL} < 500703
RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5
. endif
PLIST_FILES+= bin/pftabled-client.pl
.endif
.if !defined(WITHOUT_PYTHONC)
PLIST_FILES+= bin/pftabled-client.py
.endif
post-patch:
@${REINPLACE_CMD} -e 's|cat1/pftabled.0|man1/pftabled.0|' ${WRKSRC}/Makefile.in
post-install:
.if !defined(WITHOUT_PERLC)
${INSTALL_SCRIPT} ${WRKSRC}/pftabled-client.pl ${PREFIX}/bin/
.endif
.if !defined(WITHOUT_PYTHONC)
${INSTALL_SCRIPT} ${WRKSRC}/pftabled-client.py ${PREFIX}/bin/
.endif
.include <bsd.port.post.mk>
|