diff options
author | will <will@FreeBSD.org> | 2000-12-19 12:45:30 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-12-19 12:45:30 +0000 |
commit | 9a3ee6f02cfb56227389498e32e34c8886419594 (patch) | |
tree | 105a99bbdb7504437b5b13f0f5cf47cce3225dd2 /www/mod_layout/Makefile | |
parent | efa1f7a92b5cfb703aa7d4ecc0659f1cbaaa4a92 (diff) | |
download | FreeBSD-ports-9a3ee6f02cfb56227389498e32e34c8886419594.zip FreeBSD-ports-9a3ee6f02cfb56227389498e32e34c8886419594.tar.gz |
Add mod_layout 2.8.2, an Apache module that creates a "single look and
feel" throughout a website.
PR: 23617
Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to 'www/mod_layout/Makefile')
-rw-r--r-- | www/mod_layout/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www/mod_layout/Makefile b/www/mod_layout/Makefile new file mode 100644 index 0000000..ab63ac4 --- /dev/null +++ b/www/mod_layout/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: mod_gzip Apache module +# Date created: Dec 18 2000 +# Whom: Mikhail Teterin <mi@aldan.algebra.com> +# +# $FreeBSD$ +# + +PORTNAME= mod_layout +PORTVERSION= 2.8.2 +CATEGORIES= www +MASTER_SITES= ftp://ftp.tangent.org/pub/apache/ \ + http://www.tangent.org/mod_layout/ + +MAINTAINER= mi@aldan.algebra.com + +BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 +RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 + +do-build: + cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -c *.c + +do-install: + cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -A -i ${PORTNAME}.so + +.if !defined(NOPORTDOCS) +PLIST_SUB+= DOC='' + +post-install: + @${MKDIR} ${PREFIX}/share/doc/${PORTNAME} + @${INSTALL_DATA} ${WRKSRC}/*.html \ + ${PREFIX}/share/doc/${PORTNAME} + +.else +PLIST_SUB+= DOC='@comment ' +.endif + +.include <bsd.port.mk> |