mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
40843b1ccb
apache22 and apache25 had been removed a long time ago however the apache.mk file has never been refactored and is out of sync from the file Mk/bsd.default-versions.mk. These changes refactors the removals of the older versions. In addition: - Move some keywords like USE_APACHE, USE_APACHE_BUILD, USE_APACHE_RUN from SANITY_DEPRECATED to SANITY_UNSUPPORTED - Remove apache versions from ports Makefiles as currently there is only one available version in the tree. However the version checks are still valid and should work flawlessly whenever a new version is added. For example USES=apache:2.2+ are simply replaced with USES=apache. As currently there are no other versions available for test this could not be checked on it's own ground. - Update FOO_USE=APACHE=yes to FOO_USES=apache - Remove trailing whitespaces Approved by: portmgr Differential Revision: https://reviews.freebsd.org/D38113
32 lines
717 B
Makefile
32 lines
717 B
Makefile
PORTNAME= mod_rivet
|
|
PORTVERSION= 3.2.0
|
|
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
|
|
WWW= https://tcl.apache.org/rivet/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libitcl.so:lang/itcl
|
|
|
|
USES= apache compiler:c11 gmake \
|
|
libtool tcl:86+,tea
|
|
USE_LDCONFIG= ${PREFIX}/lib/rivet
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
CONFIGURE_ARGS+=--with-apxs=${APXS} \
|
|
--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>
|