blob: 73d1e1905d3b657f6bb51a34472f6cff9c93c6fb (
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
|
# Created by: Peter Lai <cowbert@gmail.com>
# $FreeBSD$
PORTNAME= mod_rivet
PORTVERSION= 2.2.3
CATEGORIES= www tcl
MASTER_SITES= APACHE/tcl/rivet
DISTNAME= rivet-${PORTVERSION}
MAINTAINER= jeff.lawson@flightaware.com
COMMENT= Embeds a Tcl interpreter in the Apache server
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libitcl.so:lang/itcl
GNU_CONFIGURE= yes
USE_APACHE= 22+
USE_LDCONFIG= ${PREFIX}/lib/rivet
USES+= gmake libtool tcl:85+
INSTALL_TARGET= install-strip
SUB_FILES= pkg-message
CONFIGURE_ARGS+=--with-apache-version=2 \
--prefix=${PREFIX} --with-apxs=${APXS} \
--with-tcl=${TCL_LIBDIR} --with-tclsh=${TCLSH} \
--with-rivet-target-dir=${PREFIX}/lib/rivet
post-patch:
@${REINPLACE_CMD} -e 's|`$${apxs_found} -q LIBEXECDIR`|${PREFIX}/${APACHEMODDIR}|g' \
${WRKSRC}/configure
.include <bsd.port.mk>
|