View | Details | Raw Unified | Return to bug 164738
Collapse All | Expand All

(-)Makefile (-11 / +17 lines)
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
(-)Makefile.cpan (-6 / +10 lines)
Lines 6-12 Link Here
6
### Scalar::Util     1.18                 core
6
### Scalar::Util     1.18                 core
7
### Text::ParseWords 3.24                 core
7
### Text::ParseWords 3.24                 core
8
### Term::ReadLine	 		  core
8
### Term::ReadLine	 		  core
9
### 
9
###
10
### Digest::base                          core
10
### Digest::base                          core
11
### Time::HiRes                           core
11
### Time::HiRes                           core
12
### Errno                                 core
12
### Errno                                 core
Lines 73-87 Link Here
73
73
74
MAILGATE_DEPS=	p5-HTML-Format>0:${PORTSDIR}/textproc/p5-HTML-Format \
74
MAILGATE_DEPS=	p5-HTML-Format>0:${PORTSDIR}/textproc/p5-HTML-Format \
75
		p5-HTML-Tree>0:${PORTSDIR}/www/p5-HTML-Tree \
75
		p5-HTML-Tree>0:${PORTSDIR}/www/p5-HTML-Tree \
76
		p5-libwww>0:${PORTSDIR}/www/p5-libwww
76
		p5-libwww>6.0:${PORTSDIR}/www/p5-libwww
77
	
77
78
SSL_MAILGATE_DEPS=	p5-Crypt-SSLeay>0:${PORTSDIR}/security/p5-Crypt-SSLeay \
79
		p5-LWP-Protocol-https>0:${PORTSDIR}/www/p5-LWP-Protocol-https \
80
		p5-Mozilla-CA>0:${PORTSDIR}/www/p5-Mozilla-CA
81
78
CLI_DEPS=	p5-HTTP-Message>0:${PORTSDIR}/www/p5-HTTP-Message \
82
CLI_DEPS=	p5-HTTP-Message>0:${PORTSDIR}/www/p5-HTTP-Message \
79
		p5-libwww>0:${PORTSDIR}/www/p5-libwww \
83
		p5-libwww>0:${PORTSDIR}/www/p5-libwww \
80
		p5-Term-ReadKey>0:${PORTSDIR}/devel/p5-Term-ReadKey
84
		p5-Term-ReadKey>0:${PORTSDIR}/devel/p5-Term-ReadKey
81
85
82
# ports to add:
86
# ports to add:
83
# Test::Email
87
# Test::Email
84
# Test::Builder >= 0.90 
88
# Test::Builder >= 0.90
85
# Plack::Middleware::Test::StashWarnings
89
# Plack::Middleware::Test::StashWarnings
86
DEV_DEPS=	p5-Email-Abstract>0:${PORTSDIR}/mail/p5-Email-Abstract \
90
DEV_DEPS=	p5-Email-Abstract>0:${PORTSDIR}/mail/p5-Email-Abstract \
87
		p5-HTML-Form>0:${PORTSDIR}/www/p5-HTML-Form \
91
		p5-HTML-Form>0:${PORTSDIR}/www/p5-HTML-Form \
Lines 105-111 Link Here
105
MODPERL2_DEPS=	${SITE_PERL}/${PERL_ARCH}/Apache2/Request.pm:${PORTSDIR}/www/p5-libapreq2 \
109
MODPERL2_DEPS=	${SITE_PERL}/${PERL_ARCH}/Apache2/Request.pm:${PORTSDIR}/www/p5-libapreq2 \
106
		p5-Apache-DBI>0:${PORTSDIR}/www/p5-Apache-DBI
110
		p5-Apache-DBI>0:${PORTSDIR}/www/p5-Apache-DBI
107
111
108
MYSQL_DEPS=	p5-DBD-mysql>=2.1018:${PORTSDIR}/databases/p5-DBD-mysql 
112
MYSQL_DEPS=	p5-DBD-mysql>=2.1018:${PORTSDIR}/databases/p5-DBD-mysql
109
113
110
ORACLE_DEPS=	p5-DBD-Oracle>0:${PORTSDIR}/databases/p5-DBD-Oracle
114
ORACLE_DEPS=	p5-DBD-Oracle>0:${PORTSDIR}/databases/p5-DBD-Oracle
111
115
Lines 128-133 Link Here
128
132
129
GD_DEPS=	p5-GD>0:${PORTSDIR}/graphics/p5-GD \
133
GD_DEPS=	p5-GD>0:${PORTSDIR}/graphics/p5-GD \
130
		p5-GD-Graph>0:${PORTSDIR}/graphics/p5-GD-Graph \
134
		p5-GD-Graph>0:${PORTSDIR}/graphics/p5-GD-Graph \
131
		p5-GD-TextUtil>0:${PORTSDIR}/graphics/p5-GD-TextUtil 
135
		p5-GD-TextUtil>0:${PORTSDIR}/graphics/p5-GD-TextUtil
132
136
133
USERLOGO_DEPS=	p5-Convert-Color>0:${PORTSDIR}/graphics/p5-Convert-Color
137
USERLOGO_DEPS=	p5-Convert-Color>0:${PORTSDIR}/graphics/p5-Convert-Color
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (rt-4.0.4.tar.gz) = 541e81d7d020caa1f089a353e8bf7076aef3c2938dcdd9055036a923142f8480
1
SHA256 (rt-4.0.5.tar.gz) = 280daadff11595fe4baa4f55544cedd26ada560b421c165bba45340fd6eaddb0
2
SIZE (rt-4.0.4.tar.gz) = 5964551
2
SIZE (rt-4.0.5.tar.gz) = 5877387
(-)pkg-plist (-3 / +7 lines)
Lines 238-243 Link Here
238
%%PORTDOCS%%%%DOCSDIR%%/glossary.pod
238
%%PORTDOCS%%%%DOCSDIR%%/glossary.pod
239
%%PORTDOCS%%%%DOCSDIR%%/hacking.pod
239
%%PORTDOCS%%%%DOCSDIR%%/hacking.pod
240
%%PORTDOCS%%%%DOCSDIR%%/network-diagram.svg
240
%%PORTDOCS%%%%DOCSDIR%%/network-diagram.svg
241
%%PORTDOCS%%%%DOCSDIR%%/schema.dot
241
%%PORTDOCS%%%%DOCSDIR%%/security.pod
242
%%PORTDOCS%%%%DOCSDIR%%/security.pod
242
%%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.Oracle
243
%%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.Oracle
243
%%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.Pg
244
%%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.Pg
Lines 1179-1184 Link Here
1179
share/rt40/html/Ticket/ModifyPeople.html
1180
share/rt40/html/Ticket/ModifyPeople.html
1180
share/rt40/html/Ticket/Reminders.html
1181
share/rt40/html/Ticket/Reminders.html
1181
share/rt40/html/Ticket/ShowEmailRecord.html
1182
share/rt40/html/Ticket/ShowEmailRecord.html
1183
share/rt40/html/Ticket/autohandler
1182
share/rt40/html/Ticket/Update.html
1184
share/rt40/html/Ticket/Update.html
1183
share/rt40/html/Tools/MyDay.html
1185
share/rt40/html/Tools/MyDay.html
1184
share/rt40/html/Tools/MyReminders.html
1186
share/rt40/html/Tools/MyReminders.html
Lines 1215-1223 Link Here
1215
share/rt40/html/m/login
1217
share/rt40/html/m/login
1216
share/rt40/html/m/logout
1218
share/rt40/html/m/logout
1217
share/rt40/html/m/style.css
1219
share/rt40/html/m/style.css
1220
share/rt40/html/m/ticket/autohandler
1218
share/rt40/html/m/ticket/create
1221
share/rt40/html/m/ticket/create
1219
share/rt40/html/m/ticket/history
1222
share/rt40/html/m/ticket/history
1220
share/rt40/html/m/ticket/modify
1221
share/rt40/html/m/ticket/reply
1223
share/rt40/html/m/ticket/reply
1222
share/rt40/html/m/ticket/select_create_queue
1224
share/rt40/html/m/ticket/select_create_queue
1223
share/rt40/html/m/ticket/show
1225
share/rt40/html/m/ticket/show
Lines 1259-1267 Link Here
1259
share/rt40/po/zh_TW.po
1261
share/rt40/po/zh_TW.po
1260
@dirrmtry www/rt40
1262
@dirrmtry www/rt40
1261
@dirrm share/rt40/po
1263
@dirrm share/rt40/po
1264
@exec mkdir -p %D/share/rt40/etc
1265
@exec mkdir -p %D/share/rt40/lib
1262
@exec mkdir -p %D/share/rt40/plugins
1266
@exec mkdir -p %D/share/rt40/plugins
1263
@dirrm share/rt40/plugins
1267
@dirrm share/rt40/plugins
1264
@dirrm share/rt40/lib
1268
@dirrmtry share/rt40/lib
1265
@dirrm share/rt40/html/m/tickets
1269
@dirrm share/rt40/html/m/tickets
1266
@dirrm share/rt40/html/m/ticket
1270
@dirrm share/rt40/html/m/ticket
1267
@dirrm share/rt40/html/m/_elements
1271
@dirrm share/rt40/html/m/_elements
Lines 1444-1450 Link Here
1444
@dirrm share/rt40/html/Admin
1448
@dirrm share/rt40/html/Admin
1445
@dirrm share/rt40/html
1449
@dirrm share/rt40/html
1446
@dirrm share/rt40/fonts
1450
@dirrm share/rt40/fonts
1447
@dirrm share/rt40/etc
1451
@dirrmtry share/rt40/etc
1448
@dirrm share/rt40
1452
@dirrm share/rt40
1449
%%PORTDOCS%%@dirrm %%DOCSDIR%%/upgrade/4.0.4
1453
%%PORTDOCS%%@dirrm %%DOCSDIR%%/upgrade/4.0.4
1450
%%PORTDOCS%%@dirrm %%DOCSDIR%%/upgrade/4.0.3
1454
%%PORTDOCS%%@dirrm %%DOCSDIR%%/upgrade/4.0.3

Return to bug 164738