blob: 8a5f94ff0211ed52faf522a0830b600011e89bb6 (
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
63
64
65
66
67
68
69
70
71
72
73
|
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
# $FreeBSD$
PORTNAME= racktables
DISTVERSION= 0.20.5
CATEGORIES?= sysutils www
MASTER_SITES= SF/${PORTNAME}/
DISTNAME= RackTables-${DISTVERSION}
MAINTAINER= zi@FreeBSD.org
COMMENT= Server room asset management suite
LICENSE= GPLv2
NO_BUILD= yes
RACKHOME?= www/racktables
PORTEXAMPLES= init-sample-racks.sql syncdomain.php
WANT_PHP_WEB= yes
USE_PHP= bcmath gd json mbstring mysql pdo_mysql session
SUB_FILES= pkg-message
PLIST_SUB= WWWDIR_REL=${WWWDIR_REL} WWWDIR=${WWWDIR}
WWWUSER?= www
WWWGRP?= www
OPTIONS_DEFINE= LDAP SNMP CURL LANG PCNTL PCRE
PCRE_DESC= Regular Expression Support
PCNTL_DESC= pcntl Support
LANG_DESC= Additional Language Support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MLDAP}
USE_PHP+= ldap
.endif
.if ${PORT_OPTIONS:MSNMP}
USE_PHP+= snmp
.endif
.if ${PORT_OPTIONS:MCURL}
USE_PHP+= curl
.endif
.if ${PORT_OPTIONS:MLANG}
USE_PHP+= lang
.endif
.if ${PORT_OPTIONS:MPCNTL}
USE_PHP+= pcntl
.endif
.if ${PORT_OPTIONS:MPCRE}
USE_PHP+= pcre
.endif
post-patch:
@${FIND} ${WRKSRC} -name \*.orig -type f -delete
do-install:
${MKDIR} ${WWWDIR}/wwwroot ${WWWDIR}/gateways
(cd ${WRKSRC} && ${COPYTREE_SHARE} wwwroot ${WWWDIR})
(cd ${WRKSRC} && ${COPYTREE_BIN} gateways ${WWWDIR})
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/scripts/* ${EXAMPLESDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|