blob: c61b1aec1faa736b65924e88e44eec1f73d06499 (
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
|
# New ports collection makefile for: mod_tidy
# Date created: Sun Oct 5
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
#
PORTNAME= mod_tidy
PORTVERSION= 0.5.5
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://mod-tidy.sourceforge.net/src/
DIST_SUBDIR= apache2
MAINTAINER= apache@FreeBSD.org
COMMENT= Validates the HTML output of your apache2 webserver
LIB_DEPENDS= tidy:${PORTSDIR}/www/tidy-lib
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
USE_APACHE= 22+
AP_FAST_BUILD= yes
AP_GENPLIST= yes
AP_INC+= ${LOCALBASE}/include/tidy
AP_LIB+= ${LOCALBASE}/lib -ltidy
PLIST_FILES= ${DOCSDIR:S/${PREFIX}\///}/LICENSE
PLIST_DIRS= ${DOCSDIR:S/${PREFIX}\///}
post-install:
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/../LICENSE ${DOCSDIR}
.include <bsd.port.mk>
|