freebsd-ports/www/awstats/Makefile

128 lines
5.4 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: awstats
# Date created: May 13, 2002
# Whom: Munish Chopra <mchopra@engmail.uwaterloo.ca>
#
# $FreeBSD$
#
PORTNAME= awstats
PORTVERSION= 7.0
PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= SF/${PORTNAME}/AWStats/${PORTVERSION}
MAINTAINER= samm@os2.kiev.ua
2003-02-21 15:08:24 +01:00
COMMENT= Free real-time logfile analyzer to get advanced web statistics
RUN_DEPENDS= p5-Net-XWhois>=0:${PORTSDIR}/net/p5-Net-XWhois
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/docs/LICENSE.TXT
NO_BUILD= yes
USE_PERL5_RUN= yes
USE_DOS2UNIX= tools/*.pl \
wwwroot/cgi-bin/awstats.model.conf \
wwwroot/cgi-bin/*.pl \
wwwroot/cgi-bin/lang/tooltips_f/*.txt \
wwwroot/cgi-bin/lang/tooltips_m/*.txt \
wwwroot/cgi-bin/lang/tooltips_w/*.txt \
wwwroot/cgi-bin/lang/*.txt \
wwwroot/cgi-bin/lib/* \
wwwroot/cgi-bin/plugins/*.pm \
wwwroot/cgi-bin/plugins/example/* \
wwwroot/css/* \
wwwroot/js/*
SUB_FILES= pkg-message
OPTIONS= IPV6 "Enable IPV6 for use with IPv6 Plugin" Off
.include <bsd.port.pre.mk>
.if defined(WITH_IPV6)
RUN_DEPENDS+= p5-Net-IP>=0:${PORTSDIR}/net-mgmt/p5-Net-IP
RUN_DEPENDS+= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS
.endif
.if ${PERL_LEVEL} < 500800
RUN_DEPENDS+= p5-Storable>=0:${PORTSDIR}/devel/p5-Storable
.endif
post-patch:
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/tools/awstats_buildstaticpages.pl
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/tools/awstats_configure.pl
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/tools/awstats_updateall.pl
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/wwwroot/cgi-bin/awstats.pl
do-install:
@${MKDIR} ${PREFIX}/www/awstats
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin/lang
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin/lang/tooltips_f
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin/lang/tooltips_m
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin/lang/tooltips_w
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin/lib
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin/plugins
@${MKDIR} ${PREFIX}/www/awstats/cgi-bin/plugins/example
@${MKDIR} ${PREFIX}/www/awstats/classes
@${MKDIR} ${PREFIX}/www/awstats/css
@${MKDIR} ${PREFIX}/www/awstats/icons/browser
@${MKDIR} ${PREFIX}/www/awstats/icons/clock
@${MKDIR} ${PREFIX}/www/awstats/icons/cpu
@${MKDIR} ${PREFIX}/www/awstats/icons/flags
@${MKDIR} ${PREFIX}/www/awstats/icons/mime
@${MKDIR} ${PREFIX}/www/awstats/icons/os
@${MKDIR} ${PREFIX}/www/awstats/icons/other
@${MKDIR} ${PREFIX}/www/awstats/js
@${MKDIR} ${PREFIX}/www/awstats/tools
@${MKDIR} ${PREFIX}/www/awstats/tools/webmin
- Update to 6.9 Changes 6.9: New features/improvements: - With postfix that support DSN (Delivery Status Notifications) we exclude some lines to avoid counting mails twice in maillogconvert.pl script. - Logresolvemerge.pl support FreeRADIUS logs or anything else using (the fixed length!) ctime format timestamp. - Add option stoponfirsteof in logresolvemerge tool. - Add patch to support host_proxy tag in LogFormat (for Apache LogFormat containing %{X-Forwarded-For}i) - Renamed Add to favourites on "Hit on favicon". - Increase robots, search engines database (Added Google Chrome browser, better Vista, WII, detection, ...) - Update languages files. - Added a lot of patch from sourceforge. Fixes: - Fixed broken maxmind citi, org and isp plugins. - Remove &nbsp; in name html tag to have HtmlHeadSection first. - Fix: [ 2001151 ] Security fix. - Fix: [ 2038681 ] missing <br _/_> in plugins/geoip_org_maxmind.pm - Fix: [ 1921942 ] html footer is missing from the allextraN report. - Fix: [ 1943466 ] error geoip_city_maxmind Can't locate object method "record_ - Fix: [ 1808277 ] Incorrect function call in geoip_isp_maxmind.pm - Fix: Full list of extrasections was not ordered correctly - A lot of other fixes. - Added missing icons Other/Documentation: - None - Fix CVE-2008-3714 from the upstream (Sec: Enhance security of sanitizing parameters) http://awstats.cvs.sourceforge.net/viewvc/awstats/awstats/wwwroot/cgi-bin/awstats.pl?r1=1.925&r2=1.926 PR: ports/129957, ports/130143 Submitted by: Eygene Ryabinkin <rea-fbsd _at\ codelabs.ru>, Naram Qashat <cyberbotx -at\ cyberbotx.com> Approved by: Alex Samorukov (maintainer) Security: http://secunia.com/advisories/31519
2009-01-04 07:18:02 +01:00
@${MKDIR} ${PREFIX}/www/awstats/tools/xslt
${INSTALL_SCRIPT} ${WRKSRC}/tools/awstats_buildstaticpages.pl ${PREFIX}/www/awstats/tools
${INSTALL_SCRIPT} ${WRKSRC}/tools/awstats_configure.pl ${PREFIX}/www/awstats/tools
${INSTALL_SCRIPT} ${WRKSRC}/tools/awstats_exportlib.pl ${PREFIX}/www/awstats/tools
${INSTALL_SCRIPT} ${WRKSRC}/tools/awstats_updateall.pl ${PREFIX}/www/awstats/tools
${INSTALL_SCRIPT} ${WRKSRC}/tools/logresolvemerge.pl ${PREFIX}/www/awstats/tools
${INSTALL_SCRIPT} ${WRKSRC}/tools/maillogconvert.pl ${PREFIX}/www/awstats/tools
${INSTALL_SCRIPT} ${WRKSRC}/tools/urlaliasbuilder.pl ${PREFIX}/www/awstats/tools
- Update to 6.9 Changes 6.9: New features/improvements: - With postfix that support DSN (Delivery Status Notifications) we exclude some lines to avoid counting mails twice in maillogconvert.pl script. - Logresolvemerge.pl support FreeRADIUS logs or anything else using (the fixed length!) ctime format timestamp. - Add option stoponfirsteof in logresolvemerge tool. - Add patch to support host_proxy tag in LogFormat (for Apache LogFormat containing %{X-Forwarded-For}i) - Renamed Add to favourites on "Hit on favicon". - Increase robots, search engines database (Added Google Chrome browser, better Vista, WII, detection, ...) - Update languages files. - Added a lot of patch from sourceforge. Fixes: - Fixed broken maxmind citi, org and isp plugins. - Remove &nbsp; in name html tag to have HtmlHeadSection first. - Fix: [ 2001151 ] Security fix. - Fix: [ 2038681 ] missing <br _/_> in plugins/geoip_org_maxmind.pm - Fix: [ 1921942 ] html footer is missing from the allextraN report. - Fix: [ 1943466 ] error geoip_city_maxmind Can't locate object method "record_ - Fix: [ 1808277 ] Incorrect function call in geoip_isp_maxmind.pm - Fix: Full list of extrasections was not ordered correctly - A lot of other fixes. - Added missing icons Other/Documentation: - None - Fix CVE-2008-3714 from the upstream (Sec: Enhance security of sanitizing parameters) http://awstats.cvs.sourceforge.net/viewvc/awstats/awstats/wwwroot/cgi-bin/awstats.pl?r1=1.925&r2=1.926 PR: ports/129957, ports/130143 Submitted by: Eygene Ryabinkin <rea-fbsd _at\ codelabs.ru>, Naram Qashat <cyberbotx -at\ cyberbotx.com> Approved by: Alex Samorukov (maintainer) Security: http://secunia.com/advisories/31519
2009-01-04 07:18:02 +01:00
${INSTALL_DATA} ${WRKSRC}/tools/xslt/* ${PREFIX}/www/awstats/tools/xslt
${INSTALL_SCRIPT} ${WRKSRC}/wwwroot/cgi-bin/awredir.pl ${PREFIX}/www/awstats/cgi-bin
${INSTALL_SCRIPT} ${WRKSRC}/wwwroot/cgi-bin/awstats.model.conf ${PREFIX}/www/awstats/cgi-bin
${INSTALL_SCRIPT} ${WRKSRC}/wwwroot/cgi-bin/awstats.pl ${PREFIX}/www/awstats/cgi-bin
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/lang/tooltips_f/*.txt ${PREFIX}/www/awstats/cgi-bin/lang/tooltips_f
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/lang/tooltips_m/*.txt ${PREFIX}/www/awstats/cgi-bin/lang/tooltips_m
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/lang/tooltips_w/*.txt ${PREFIX}/www/awstats/cgi-bin/lang/tooltips_w
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/lang/*.txt ${PREFIX}/www/awstats/cgi-bin/lang
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/lib/* ${PREFIX}/www/awstats/cgi-bin/lib
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/plugins/*.pm ${PREFIX}/www/awstats/cgi-bin/plugins
${INSTALL_DATA} ${WRKSRC}/wwwroot/cgi-bin/plugins/example/* ${PREFIX}/www/awstats/cgi-bin/plugins/example
${INSTALL_DATA} ${WRKSRC}/wwwroot/classes/awgraphapplet.jar ${PREFIX}/www/awstats/classes/awgraphapplet.jar
${INSTALL_DATA} ${WRKSRC}/wwwroot/css/* ${PREFIX}/www/awstats/css
${INSTALL_DATA} ${WRKSRC}/wwwroot/icon/browser/* ${PREFIX}/www/awstats/icons/browser
${INSTALL_DATA} ${WRKSRC}/wwwroot/icon/clock/* ${PREFIX}/www/awstats/icons/clock
${INSTALL_DATA} ${WRKSRC}/wwwroot/icon/cpu/* ${PREFIX}/www/awstats/icons/cpu
${INSTALL_DATA} ${WRKSRC}/wwwroot/icon/flags/* ${PREFIX}/www/awstats/icons/flags
${INSTALL_DATA} ${WRKSRC}/wwwroot/icon/mime/* ${PREFIX}/www/awstats/icons/mime
${INSTALL_DATA} ${WRKSRC}/wwwroot/icon/os/* ${PREFIX}/www/awstats/icons/os
${INSTALL_DATA} ${WRKSRC}/wwwroot/icon/other/* ${PREFIX}/www/awstats/icons/other
${INSTALL_DATA} ${WRKSRC}/wwwroot/js/* ${PREFIX}/www/awstats/js
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/images
${INSTALL_DATA} ${WRKSRC}/docs/images/* ${DOCSDIR}/images
${INSTALL_DATA} ${WRKSRC}/docs/*.* ${DOCSDIR}
.endif
- Update to 6.9 Changes 6.9: New features/improvements: - With postfix that support DSN (Delivery Status Notifications) we exclude some lines to avoid counting mails twice in maillogconvert.pl script. - Logresolvemerge.pl support FreeRADIUS logs or anything else using (the fixed length!) ctime format timestamp. - Add option stoponfirsteof in logresolvemerge tool. - Add patch to support host_proxy tag in LogFormat (for Apache LogFormat containing %{X-Forwarded-For}i) - Renamed Add to favourites on "Hit on favicon". - Increase robots, search engines database (Added Google Chrome browser, better Vista, WII, detection, ...) - Update languages files. - Added a lot of patch from sourceforge. Fixes: - Fixed broken maxmind citi, org and isp plugins. - Remove &nbsp; in name html tag to have HtmlHeadSection first. - Fix: [ 2001151 ] Security fix. - Fix: [ 2038681 ] missing <br _/_> in plugins/geoip_org_maxmind.pm - Fix: [ 1921942 ] html footer is missing from the allextraN report. - Fix: [ 1943466 ] error geoip_city_maxmind Can't locate object method "record_ - Fix: [ 1808277 ] Incorrect function call in geoip_isp_maxmind.pm - Fix: Full list of extrasections was not ordered correctly - A lot of other fixes. - Added missing icons Other/Documentation: - None - Fix CVE-2008-3714 from the upstream (Sec: Enhance security of sanitizing parameters) http://awstats.cvs.sourceforge.net/viewvc/awstats/awstats/wwwroot/cgi-bin/awstats.pl?r1=1.925&r2=1.926 PR: ports/129957, ports/130143 Submitted by: Eygene Ryabinkin <rea-fbsd _at\ codelabs.ru>, Naram Qashat <cyberbotx -at\ cyberbotx.com> Approved by: Alex Samorukov (maintainer) Security: http://secunia.com/advisories/31519
2009-01-04 07:18:02 +01:00
@${ECHO_CMD} ""
@${ECHO_CMD} "* Use ${PREFIX}/www/awstats/tools/awstats_configure.pl to setup your hosts."
- Update to 6.9 Changes 6.9: New features/improvements: - With postfix that support DSN (Delivery Status Notifications) we exclude some lines to avoid counting mails twice in maillogconvert.pl script. - Logresolvemerge.pl support FreeRADIUS logs or anything else using (the fixed length!) ctime format timestamp. - Add option stoponfirsteof in logresolvemerge tool. - Add patch to support host_proxy tag in LogFormat (for Apache LogFormat containing %{X-Forwarded-For}i) - Renamed Add to favourites on "Hit on favicon". - Increase robots, search engines database (Added Google Chrome browser, better Vista, WII, detection, ...) - Update languages files. - Added a lot of patch from sourceforge. Fixes: - Fixed broken maxmind citi, org and isp plugins. - Remove &nbsp; in name html tag to have HtmlHeadSection first. - Fix: [ 2001151 ] Security fix. - Fix: [ 2038681 ] missing <br _/_> in plugins/geoip_org_maxmind.pm - Fix: [ 1921942 ] html footer is missing from the allextraN report. - Fix: [ 1943466 ] error geoip_city_maxmind Can't locate object method "record_ - Fix: [ 1808277 ] Incorrect function call in geoip_isp_maxmind.pm - Fix: Full list of extrasections was not ordered correctly - A lot of other fixes. - Added missing icons Other/Documentation: - None - Fix CVE-2008-3714 from the upstream (Sec: Enhance security of sanitizing parameters) http://awstats.cvs.sourceforge.net/viewvc/awstats/awstats/wwwroot/cgi-bin/awstats.pl?r1=1.925&r2=1.926 PR: ports/129957, ports/130143 Submitted by: Eygene Ryabinkin <rea-fbsd _at\ codelabs.ru>, Naram Qashat <cyberbotx -at\ cyberbotx.com> Approved by: Alex Samorukov (maintainer) Security: http://secunia.com/advisories/31519
2009-01-04 07:18:02 +01:00
.if !defined(NOPORTDOCS)
@${ECHO_CMD} "* Documentation has been installed in ${PREFIX}/share/doc/awstats"
.endif
@${ECHO_CMD} ""
.if !defined(BATCH)
post-install:
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.post.mk>