blob: b516b70810405e5558723d7fb4f8731534467068 (
plain)
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
|
# $NetBSD: Makefile,v 1.12 2006/01/24 07:32:42 wiz Exp $
#
DISTNAME= mod_layout-3.2
PKGNAME= ${DISTNAME:C|mod_|ap-|}
PKGREVISION= 1
CATEGORIES= www
MASTER_SITES= ftp://ftp.tangent.org/pub/apache/ \
http://software.tangent.org/download/
MAINTAINER= grant@NetBSD.org
HOMEPAGE= http://software.tangent.org/
COMMENT= Apache module to wrap static or dynamic content
APACHE_MODULE_NAME= mod_layout.so
LAYOUT_DIR= ${PREFIX}/share/httpd/htdocs/manual/mod/mod_layout
post-install:
${INSTALL_DATA_DIR} ${LAYOUT_DIR}
${INSTALL_DATA} ${WRKSRC}/faq.html ${LAYOUT_DIR}
${INSTALL_DATA_DIR} ${LAYOUT_DIR}/directives
cd ${WRKSRC}/directives && ${PAX} -rw . ${LAYOUT_DIR}/directives
.include "../../www/apache/module.mk"
.include "../../mk/bsd.pkg.mk"
|