diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-05-09 11:59:57 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-05-09 11:59:57 +0000 |
commit | 97f05e9cbdb0a95bef046feb995fb540bea57765 (patch) | |
tree | 71179e9f19fd479bc44339ed9520f6c09a8d73cc /www | |
parent | Update MD5 after the file changed on the server (IA64 license-check binary (diff) |
Unbreak by fixing path to apxs
PR: 51175
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=80542
Diffstat (limited to '')
-rw-r--r-- | www/mod_blosxom/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/mod_blosxom/Makefile b/www/mod_blosxom/Makefile index 49b9b22957f4..8eb0f563f4d0 100644 --- a/www/mod_blosxom/Makefile +++ b/www/mod_blosxom/Makefile @@ -14,9 +14,15 @@ MASTER_SITE_SUBDIR= mod-blosxom MAINTAINER= gslin@ccca.nctu.edu.tw COMMENT= Apache module to build the extremely lightweight Weblog environment -BROKEN= "Does not compile" +APXS?= ${LOCALBASE}/sbin/apxs +APACHE_PORT?= ${PORTSDIR}/www/apache13 BUILD_DEPENDS= ${APXS}:${APACHE_PORT} RUN_DEPENDS= ${BUILD_DEPENDS} +USE_REINPLACE= yes + +post-patch: + ${REINPLACE_CMD} -e 's,^APXS=.*,APXS=${APXS},' ${WRKSRC}/Makefile + .include <bsd.port.mk> |