b82333c73e
- Switch to options helpers - Don't install license file - Only use pkg-message which refers to documentation when docs are installed
33 lines
659 B
Makefile
33 lines
659 B
Makefile
# Created by: Sylvio Cesar Teixeira <sylvio@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ftasv
|
|
PORTVERSION= 0.9.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://fabletech.com/${PORTNAME}-download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Is a commandline scoreboard viewer for the Apache server
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_APACHE= 22+
|
|
|
|
PLIST_FILES= sbin/ftasv
|
|
PORTDOCS= AUTHORS ChangeLog README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DOCS_SUB_FILES= pkg-message
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for docs in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${docs} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|