Lines 11-18
Link Here
|
11 |
# o install a sample into etc/apache22/Includes |
11 |
# o install a sample into etc/apache22/Includes |
12 |
|
12 |
|
13 |
PORTNAME= rt |
13 |
PORTNAME= rt |
14 |
PORTVERSION= 4.0.4 |
14 |
PORTVERSION= 4.0.5 |
15 |
PORTREVISION= 1 |
|
|
16 |
CATEGORIES= www |
15 |
CATEGORIES= www |
17 |
MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ \ |
16 |
MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ \ |
18 |
ftp://ftp.eu.uu.net/pub/unix/ticketing/rt/release/ |
17 |
ftp://ftp.eu.uu.net/pub/unix/ticketing/rt/release/ |
Lines 24-37
Link Here
|
24 |
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-noportdocs-Makefile.in |
23 |
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-noportdocs-Makefile.in |
25 |
.endif |
24 |
.endif |
26 |
|
25 |
|
27 |
CONFLICTS= rt-3.6* rt-3.8* |
26 |
CONFLICTS= rt-3.8* |
28 |
LATEST_LINK= rt40 |
27 |
LATEST_LINK= rt40 |
29 |
|
28 |
|
30 |
# See doc/web_deployment.pod for info on the choices of webserver / |
29 |
# See doc/web_deployment.pod for info on the choices of webserver / |
31 |
# webapp combinations. Note: apache-1.3.x is no longer supported in |
30 |
# webapp combinations. Note: if using apache, apache-2.2+ is |
32 |
# ports: apache-2.2+ is recommended. For deployment with nginx, use |
31 |
# recommended. For deployment with nginx, use the SPAWN_FCGI method. |
33 |
# the SPAWN_FCGI method. A standalone PSGI based webserver is always |
32 |
# A standalone PSGI based webserver is always available, but this is |
34 |
# available, but this is really only suitable for development usage. |
33 |
# really only suitable for development usage. |
35 |
# |
34 |
# |
36 |
# See doc/full_text_indexing.pod if you need to set up full text |
35 |
# See doc/full_text_indexing.pod if you need to set up full text |
37 |
# indexes on your ticket database. PostgreSQL or Oracle are |
36 |
# indexes on your ticket database. PostgreSQL or Oracle are |
Lines 47-52
Link Here
|
47 |
POSTGRESQL "Enable PosgreSQL backend" off \ |
46 |
POSTGRESQL "Enable PosgreSQL backend" off \ |
48 |
ORACLE "Enable Oracle backend" off \ |
47 |
ORACLE "Enable Oracle backend" off \ |
49 |
SQLITE "Enable SQLite backend (dev only)" off \ |
48 |
SQLITE "Enable SQLite backend (dev only)" off \ |
|
|
49 |
SSL_MAILGATE "Enable HTTPS support for rt-mailgate" off \ |
50 |
DEV "Configure for Developers" off \ |
50 |
DEV "Configure for Developers" off \ |
51 |
GPG "Enable GnuPG support" on \ |
51 |
GPG "Enable GnuPG support" on \ |
52 |
GRAPHVIZ "Enable GraphViz charts" off \ |
52 |
GRAPHVIZ "Enable GraphViz charts" off \ |
Lines 160-184
Link Here
|
160 |
.if defined(WITH_DEV) |
160 |
.if defined(WITH_DEV) |
161 |
BUILD_DEPENDS+= ${DEV_DEPS} |
161 |
BUILD_DEPENDS+= ${DEV_DEPS} |
162 |
RUN_DEPENDS+= ${DEV_DEPS} |
162 |
RUN_DEPENDS+= ${DEV_DEPS} |
163 |
CONFIGURE_ARGS+= "--enable-developer-mode" |
163 |
CONFIGURE_ARGS+= --enable-developer-mode |
|
|
164 |
.endif |
165 |
|
166 |
.if defined(WITH_SSL_MAILGATE) |
167 |
BUILD_DEPENDS+= ${SSL_MAILGATE_DEPS} |
168 |
RUN_DEPENDS+= ${SSL_MAILGATE_DEPS} |
169 |
CONFIGURE_ARGS+= --enable-ssl-mailgate |
164 |
.endif |
170 |
.endif |
165 |
|
171 |
|
166 |
.if defined(WITH_GRAPHVIZ) |
172 |
.if defined(WITH_GRAPHVIZ) |
167 |
BUILD_DEPENDS+= ${GRAPHVIZ_DEPS} |
173 |
BUILD_DEPENDS+= ${GRAPHVIZ_DEPS} |
168 |
RUN_DEPENDS+= ${GRAPHVIZ_DEPS} |
174 |
RUN_DEPENDS+= ${GRAPHVIZ_DEPS} |
169 |
CONFIGURE_ARGS+= "--enable-graphviz" |
175 |
CONFIGURE_ARGS+= --enable-graphviz |
170 |
.endif |
176 |
.endif |
171 |
|
177 |
|
172 |
.if defined(WITH_GPG) |
178 |
.if defined(WITH_GPG) |
173 |
BUILD_DEPENDS+= ${GPG_DEPS} |
179 |
BUILD_DEPENDS+= ${GPG_DEPS} |
174 |
RUN_DEPENDS+= ${GPG_DEPS} |
180 |
RUN_DEPENDS+= ${GPG_DEPS} |
175 |
CONFIGURE_ARGS+= "--enable-gpg" |
181 |
CONFIGURE_ARGS+= --enable-gpg |
176 |
.endif |
182 |
.endif |
177 |
|
183 |
|
178 |
.if defined(WITH_GD) |
184 |
.if defined(WITH_GD) |
179 |
BUILD_DEPENDS+= ${GD_DEPS} |
185 |
BUILD_DEPENDS+= ${GD_DEPS} |
180 |
RUN_DEPENDS+= ${GD_DEPS} |
186 |
RUN_DEPENDS+= ${GD_DEPS} |
181 |
configure_args+= "--enable-gd" |
187 |
configure_args+= --enable-gd |
182 |
.endif |
188 |
.endif |
183 |
|
189 |
|
184 |
RT_ETC_PATH?= ${PREFIX}/etc/${PORTNAME}40 |
190 |
RT_ETC_PATH?= ${PREFIX}/etc/${PORTNAME}40 |