blob: af8ece7b33b373adbf815165f5e8408f91879ece (
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
|
# Created by: Sylvio Cesar Teixeira <sylvio@FreeBSD.org>
# $FreeBSD$
PORTNAME= ftasv
PORTVERSION= 0.9.2
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://fabletech.com/${PORTNAME}-download/
MAINTAINER= sylvio@FreeBSD.org
COMMENT= Is a commandline scoreboard viewer for the Apache server
GNU_CONFIGURE= yes
USE_APACHE= 22+
PLIST_FILES= sbin/ftasv
SUB_FILES= pkg-message
PORTDOCS= AUTHORS COPYING ChangeLog README
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 700000
BROKEN= does not link on 6.X
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for docs in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
.endfor
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|