diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2003-07-17 20:39:08 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2003-07-17 20:39:08 +0000 |
commit | 5a0804685b5c6e5933b25bd18026207d0fbf617e (patch) | |
tree | 2ebf625e82d7bb46597d29d8fadb170ad63213e9 /www/wwwstat | |
parent | eee48e2cb7cc54b4ae20107a9fc32e6d2946fa4e (diff) | |
download | ports-5a0804685b5c6e5933b25bd18026207d0fbf617e.tar.gz ports-5a0804685b5c6e5933b25bd18026207d0fbf617e.zip |
Notes
Diffstat (limited to 'www/wwwstat')
-rw-r--r-- | www/wwwstat/Makefile | 1 | ||||
-rw-r--r-- | www/wwwstat/files/patch-monthly.pl | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/www/wwwstat/Makefile b/www/wwwstat/Makefile index 50c764e88ddb..7f64edd3270e 100644 --- a/www/wwwstat/Makefile +++ b/www/wwwstat/Makefile @@ -7,6 +7,7 @@ PORTNAME= wwwstat PORTVERSION= 2.01 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ftp://www.ics.uci.edu/pub/websoft/wwwstat/ \ ftp://ftp.gwdg.de/pub/misc/www-stat/websoft/wwwstat/ diff --git a/www/wwwstat/files/patch-monthly.pl b/www/wwwstat/files/patch-monthly.pl new file mode 100644 index 000000000000..aef0a2108f3d --- /dev/null +++ b/www/wwwstat/files/patch-monthly.pl @@ -0,0 +1,19 @@ +$FreeBSD$ + +--- monthly.pl.orig Thu Jul 17 14:24:55 2003 ++++ monthly.pl Thu Jul 17 14:26:02 2003 +@@ -66,11 +66,13 @@ + if ($mon == 0) { $mon = 11; $year -= 1; } + else { $mon -= 1; } + ++$year += 1900; ++ + $LastMonth = $MoY[$mon]; + + $ArcName =~ s/%M/$LastMonth$year/; + +-$ArcStats = '/dc/ud/www/documentroot/Admin/stats-19' . $year . ++$ArcStats = '/dc/ud/www/documentroot/Admin/stats-' . $year . + '/' . $LastMonth . '.wwwstats.html'; + + print "Figured out that last month was $LastMonth $year\n"; |