blob: ab63ac4fc353103b1935a769bf17187d11435fd8 (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
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>
|