summaryrefslogtreecommitdiff
path: root/www/thundercache/Makefile
blob: 5137d1ee22e781afa57086a4ff746c402a1f1575 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# $FreeBSD$

PORTNAME=	thundercache
PORTVERSION=	6.1
PORTREVISION=	5
CATEGORIES=	www
MASTER_SITES=	http://www.thundercache.com.br/dist/ \
		http://www.bmsoftware.org/packs/ \
		http://www8.freebsdbrasil.com.br/~eksffa/thunder/ \
		http://www6.freebsdbrasil.com.br/~eksffa/l/dev/thunder/ \
		${MASTER_SITE_LOCAL}/jmelo
DISTNAME=	thundercache-6.1.201104260900-64bits-fbsd

MAINTAINER=	eksffa@freebsdbrasil.com.br
COMMENT=	High-performance and high-efficiency caching proxy system

OPTIONS_DEFINE=	DEPENDACK APACHE PHP PGSQL DOCS
OPTIONS_DEFAULT=	DEPENDACK APACHE PHP PGSQK
DEPENDACK_DESC=		I have read and understood the depends needs
APACHE_DESC=		Install apache for reporting viewing
PHP_DESC=		Install PHP for reporting generating
PGSQL_DESC=		Install PostgreSQL (report data storing)

USE_OPENSSL=	yes
USE_BZIP2=	yes

ONLY_FOR_ARCHS=	i386 amd64

USE_RC_SUBR=	thundercache

NO_BUILD=	yes
LICENSE=	commercial
LICENSE_NAME=	commercial
LICENSE_PERMS=	dist-mirror pkg-mirror auto-accept
LICENSE_TEXT=	Commercial software with shareware license to 50 threads
RESTRICTED=	Commercial software with shareware license to 50 threads

.include <bsd.port.options.mk>

.if ${ARCH} == "i386"
DISTNAME=	thundercache-6.1.201104260900-32bits-fbsd
.endif

WRKSRC=		${WRKDIR}/thunder

.if ${PORT_OPTIONS:MAPACHE}
USE_APACHE_RUN=	22+
.endif

.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL=	yes
WANT_PGSQL_VER=	84+
RUN_DEPENDS+=	postgresql-server>=0:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
.endif

.if ${PORT_OPTIONS:MPHP} && ${PORT_OPTIONS:MPGSQL}
RUN_DEPENDS+=	${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_pgsql.so:${PORTSDIR}/databases/php5-pdo_pgsql
RUN_DEPENDS+=	${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pgsql.so:${PORTSDIR}/databases/php5-pgsql
.endif

.if ${PORT_OPTIONS:MPHP}
USE_PHP+=	curl pcre bcmath pdo mcrypt mhash session
.endif

LIB_DEPENDS+=	curl:${PORTSDIR}/ftp/curl:install

SUB_FILES=	pkg-message log.sh test-deps.sh
SUB_LIST=	"GREP=${GREP}"

show-info:
	@${ECHO_MSG} ""
	@${ECHO_MSG} "ATTENTION:"
	@${ECHO_MSG} ""
	@${ECHO_MSG} " It is very important that you carefully read and respect"
	@${ECHO_MSG} " the special build options for the following depends:"
	@${ECHO_MSG} ""
	@${ECHO_MSG} " ftp/curl		LIBSSH2=yes OPENSSL=yes PROXY=yes"
	@${ECHO_MSG} " security/openssl	ZLIB=yes"
	@${ECHO_MSG} " devel/php5-pcre	BUNDLED_PCRE=yes (for apache20)"
	@${ECHO_MSG} " postgresql${PGSQL_VER}-server \
					NLS=yes PAM=yes OPTIMIZED_CFLAGS=yes TZDATA=yes"
	@${ECHO_MSG} ""
	@${ECHO_MSG} " After you understood it correctly, select DEPENDACK on"
	@${ECHO_MSG} " the OPTIONS screen. Run ''make config'' to acknowledge"
	@${ECHO_MSG} ""
.if ! ${PORT_OPTIONS:MDEPENDACK}
	@${FALSE}
.endif

pre-everything::show-info

do-install:
	@${CP} -r ${WRKSRC} ${PREFIX}/
	${INSTALL_SCRIPT} ${WRKDIR}/log.sh ${PREFIX}/thunder/sbin/
	@${MKDIR} -m 755 /var/run/thunder

post-install:
	@${CAT} ${PKGMESSAGE}
	@(${CHMOD} +x ${WRKDIR}/test-deps.sh ; \
	if ! ${WRKDIR}/test-deps.sh > /dev/null 2>&1 ; then \
		${ECHO_MSG} "**** FATAL **** " ; \
		${ECHO_MSG} "**** THIS PORT MAY NOT WORK PROPERLY **** " ; \
		${ECHO_MSG} "Some depends are not built with required features." ; \
		${ECHO_MSG} "You must always honor at least the following options" ; \
		${ECHO_MSG} "depends as listed:" ; \
		${ECHO_MSG} "" ; \
		${ECHO_MSG} "ftp/curl	   LIBSSH2=yes OPENSSL=yes PROXY=yes" ; \
		${ECHO_MSG} "" ; \
		${ECHO_MSG} "Type ''make show-info'' to read further information." ; \
		${ECHO_MSG} "" ; \
	fi)

.include <bsd.port.mk>