View | Details | Raw Unified | Return to bug 200396 | Differences between
and this patch

Collapse All | Expand All

(-)mod_rivet/Makefile (-17 / +5 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/www/mod_rivet/Makefile 386312 2015-05-14 10:15:04Z mat $
2
# $FreeBSD: head/www/mod_rivet/Makefile 386312 2015-05-14 10:15:04Z mat $
3
3
4
PORTNAME=	mod_rivet
4
PORTNAME=	mod_rivet
5
PORTVERSION=	2.2.2
5
PORTVERSION=	2.2.3
6
CATEGORIES=	www tcl
6
CATEGORIES=	www tcl
7
MASTER_SITES=	APACHE/tcl/rivet
7
MASTER_SITES=	APACHE/tcl/rivet
8
DISTNAME=	rivet-${PORTVERSION}
8
DISTNAME=	rivet-${PORTVERSION}
Lines 11-16 Link Here
11
COMMENT=	Embeds a Tcl interpreter in the Apache server
11
COMMENT=	Embeds a Tcl interpreter in the Apache server
12
12
13
LICENSE=	APACHE20
13
LICENSE=	APACHE20
14
LICENSE_FILE=   ${WRKSRC}/LICENSE
14
15
15
LIB_DEPENDS=	libitcl.so:${PORTSDIR}/lang/itcl
16
LIB_DEPENDS=	libitcl.so:${PORTSDIR}/lang/itcl
16
17
Lines 21-48 Link Here
21
22
22
INSTALL_TARGET=	install-strip
23
INSTALL_TARGET=	install-strip
23
24
25
SUB_FILES=      pkg-message
26
24
CONFIGURE_ARGS+=--with-apache-version=2 \
27
CONFIGURE_ARGS+=--with-apache-version=2 \
25
		--prefix=${PREFIX} --with-apxs=${APXS} \
28
		--prefix=${PREFIX} --with-apxs=${APXS} \
26
		--with-tcl=${TCL_LIBDIR} --with-tclsh=${TCLSH} \
29
		--with-tcl=${TCL_LIBDIR} --with-tclsh=${TCLSH} \
27
		--with-rivet-target-dir=${PREFIX}/lib/rivet
30
		--with-rivet-target-dir=${PREFIX}/lib/rivet
28
31
29
post-patch:
32
post-patch:
30
	${REINPLACE_CMD}  -e 's|`$${apxs_found} -q LIBEXECDIR`|${PREFIX}/${APACHEMODDIR}|g' \
33
	@${REINPLACE_CMD}  -e 's|`$${apxs_found} -q LIBEXECDIR`|${PREFIX}/${APACHEMODDIR}|g' \
31
		${WRKSRC}/configure
34
		${WRKSRC}/configure
32
35
33
post-install:
34
	@${ECHO_MSG} ""
35
	@${ECHO_MSG} "===================================================="
36
	@${ECHO_MSG} "Remember to modify your apache configuration file"
37
	@${ECHO_MSG} "to load mod_rivet and set the appropriate handlers:"
38
	@${ECHO_MSG} ""
39
	@${ECHO_MSG} "LoadModule rivet_module ${APACHEMODDIR}/mod_rivet.so"
40
	@${ECHO_MSG} ""
41
	@${ECHO_MSG} "AddType application/x-httpd-rivet .rvt"
42
	@${ECHO_MSG} "AddType application/x-rivet-tcl .tcl"
43
	@${ECHO_MSG} ""
44
	@${ECHO_MSG} "Visit http://tcl.apache.org/rivet/ for documentation"
45
	@${ECHO_MSG} ""
46
	@${ECHO_MSG} "===================================================="
47
48
.include <bsd.port.mk>
36
.include <bsd.port.mk>
(-)mod_rivet/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (rivet-2.2.2.tar.gz) = 693ac67ad1af5576968fe6d274e8e518ad8cc06a5fa2c6e8b958f24636c55692
1
SHA256 (rivet-2.2.3.tar.gz) = d5f6cae2a09999e59f3f7eef73d55f50ab29ee4277c92c5e6e50e4b165fc7d16
2
SIZE (rivet-2.2.2.tar.gz) = 1177800
2
SIZE (rivet-2.2.3.tar.gz) = 1171217
(-)mod_rivet/files/pkg-message.in (+13 lines)
Line 0 Link Here
1
2
====================================================
3
Remember to modify your apache configuration file
4
to load mod_rivet and set the appropriate handlers:
5
6
LoadModule rivet_module %%APACHEMODDIR%%/mod_rivet.so
7
8
AddType application/x-httpd-rivet .rvt
9
AddType application/x-rivet-tcl .tcl
10
11
Visit http://tcl.apache.org/rivet/ for documentation
12
13
====================================================

Return to bug 200396