mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
c3ed9d9db4
hosting sites. WebReport is a web log statistics reporting program especially designed for virtual web hosting sites. It is also very useful for signle hosting sites. the main difference between WebReport and other statics programs is a configuration file which allows for easy manipulation of the features. WWW: http://www.inter7.com/webreport2.html PR: ports/62904 Submitted by: ismail@enderunix.org
37 lines
899 B
Makefile
37 lines
899 B
Makefile
# New ports collection makefile for: webreport
|
|
# Date created: 06 Feb 2004
|
|
# Whom: ismail@enderunix.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= webreport
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.inter7.com/webreport/
|
|
|
|
MAINTAINER= ismail@EnderUNIX.org
|
|
COMMENT= WebReport is a web log statistics program for web hosting sites
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
PORTDOCS= INSTALL
|
|
PLIST_FILES= bin/webreport etc/webreport.conf-dist
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,ulong,unsigned long,;s,/etc/,${PREFIX}/etc/,' ${WRKSRC}/webreport.h
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/webreport ${PREFIX}/bin
|
|
@${INSTALL_DATA} ${WRKSRC}/webreport.conf ${PREFIX}/etc/webreport.conf-dist
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_MAN} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE} | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g'
|
|
|
|
.include <bsd.port.mk>
|