21a283f3be
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
32 lines
759 B
Makefile
32 lines
759 B
Makefile
# Created by: Lukasz Wasikowski <lukasz@wasikowski.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_macro
|
|
PORTVERSION= 1.1.11
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.cri.ensmp.fr/~coelho/mod_macro/
|
|
|
|
MAINTAINER= lukasz@wasikowski.net
|
|
COMMENT= Apache 2.2.x module for use macros in config files
|
|
|
|
LICENSE= mod_macro
|
|
LICENSE_NAME= mod_macro license (apache with postcard request)
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
USE_APACHE= 22
|
|
AP_FAST_BUILD= yes
|
|
AP_GENPLIST= yes
|
|
PORTDOCS= ${PORTNAME}.html
|
|
|
|
PORTSCOUT= limit:^1\.1\.
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|