mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
15ce190bed
- Changed overall byte count data type from int to unsigned long long so it doesn't wrap if loaded requests total >2GB. PR: 70040 Submitted by: Cheng-Lung Sung <clsung@freebsd.csie.nctu.edu.tw>
35 lines
801 B
Makefile
35 lines
801 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: snowlog
|
|
# Date created: Jul 30 2004
|
|
# Whom: Cheng-Lung Sung <clsung@dragon2.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= snowlog
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://home.kcore.de/~kiza/software/snowlog/download/
|
|
|
|
MAINTAINER= clsung@dragon2.net
|
|
COMMENT= A webserver access log browser/analyzer
|
|
|
|
LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre
|
|
|
|
MAN1= snowlog.1
|
|
DOCS= INSTALLATION doc/README doc/filters.example
|
|
SHAREDOCS= referers.regexp useragents.regexp
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DATADIR}
|
|
cd ${WRKSRC}/share && ${INSTALL_DATA} ${SHAREDOCS} ${DATADIR}
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|