Changes: - awstats_updateall.pl: Added -excludeconf option - Allow plugins to add entry in menu. - Allow plugins to add charts with its own way to compile data inside the update process. - Added the geoip_region_maxmind and geoip_city_maxmind plugins. - maillogconvert.pl: Support postfix 2.1 that change its log format using NOQUEUE string instead of a number for mails that are rejected before being queued. - Little speed improvments. - Counts javascript disabled browsers (A new MiscTracker feature). - When a direct access to last line is successfull, awstats is directly in mode "NewLine". No need to find a more recent record for this. This means the NotSortedRecordTolerance works even between end and start of updates. - You can use a particular not used field in your log file to build a personalized report with the ExtraSection feature. Just use a personalized log format and use the tag %extraX (where X is a number) to name field you want to use, then, in ExtraSection parmaters, you can use extraX to tell wich info to use to extract data for building the chart. - Support method "put" when analyzing ftp log files. - Added a bold style around current day/month in label of charts. - Bug fixes and documentation improvements.
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2004/12/29 10:22:27 minskim Exp $
|
|
#
|
|
|
|
DISTNAME= awstats-6.2
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=awstats/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= http://awstats.sourceforge.net/
|
|
COMMENT= Free real-time logfile analyzer to get advanced web statistics
|
|
|
|
USE_BUILDLINK3= YES
|
|
NO_BUILD= YES
|
|
USE_PERL5= run
|
|
|
|
REPLACE_PERL= tools/*.pl \
|
|
wwwroot/cgi-bin/*.pl
|
|
|
|
.include "../../lang/perl5/buildlink3.mk"
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/awstats
|
|
${INSTALL_DATA_DIR} ${PREFIX}/awstats/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/awstats
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/awstats
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tools/*.pl ${PREFIX}/awstats/bin
|
|
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/awstats.model.conf \
|
|
${PREFIX}/share/examples/awstats/awstats.conf
|
|
${RM} ${WRKSRC}/wwwroot/cgi-bin/awstats.model.conf
|
|
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/plugins/example/example.pm \
|
|
${PREFIX}/share/examples/awstats/example.pm
|
|
${RM} -fr ${WRKSRC}/wwwroot/cgi-bin/plugins/example
|
|
cd ${WRKSRC}/wwwroot && ${PAX} -rwpppm . ${PREFIX}/awstats/
|
|
cd ${WRKSRC}/docs && ${PAX} -rwpppm . ${PREFIX}/share/doc/html/awstats/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|