- define the versions in a single location instead of having it hardcoded throughout the Makefile

- shuffle the Makefile to resemble the standard template
- drop trailing '\' from CONFIGURE_ENV
- cleanup DESCR
This commit is contained in:
jasper 2014-05-22 15:47:38 +00:00
parent 9bdaa7ac4e
commit 918df4840e
2 changed files with 21 additions and 27 deletions

View File

@ -1,27 +1,30 @@
# $OpenBSD: Makefile,v 1.40 2014/05/22 15:13:37 jasper Exp $
# $OpenBSD: Makefile,v 1.41 2014/05/22 15:47:38 jasper Exp $
COMMENT= web server log file analysis program
V= 30
DISTNAME= webalizer-2.23-08-RB${V}-src
PKGNAME= webalizer-2.23.08.${V}
RB_V= 30
V= 2.23-08-RB${RB_V}
DISTNAME= webalizer-${V}-src
PKGNAME= webalizer-${V:S/-/./g:S/RB//}
REVISION= 0
CATEGORIES= www
MASTER_SITES= http://www.patrickfrei.ch/webalizer/rb${V}/
HOMEPAGE= http://www.patrickfrei.ch/webalizer/
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>
# GPLv2
PERMIT_PACKAGE_CDROM= Yes
MASTER_SITES= ${HOMEPAGE}/rb${V}/
WANTLIB= GeoIP>=5 c db gd>=18 m png pthread z
LIB_DEPENDS= databases/db/v4 \
graphics/gd \
net/GeoIP
# GPLv2
PERMIT_PACKAGE_CDROM= Yes
WANTLIB= GeoIP>=5 c db gd>=18 m png pthread z
WRKDIST= ${WRKDIR}/webalizer-2.23-08-RB${V}
WRKDIST= ${WRKDIR}/webalizer-${V}
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --enable-dns \
@ -29,7 +32,7 @@ CONFIGURE_ARGS= --enable-dns \
--with-db=${LOCALBASE}/include/db4 \
--with-dblib=${LOCALBASE}/lib/db4 \
--with-gd=${LOCALBASE}/include
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
NO_TEST= Yes

View File

@ -2,20 +2,11 @@ Webalizer is a web server log file analysis program which produces usage
statistics in HTML format for viewing with a browser. The results are
presented in both columnar and graphical format, which facilitates
interpretation. Yearly, monthly, daily and hourly usage statistics are
presented, along with the ability to display usage by site, URL, referrer,
user agent (browser), search string, entry/exit page, username and country
(some information is only available if supported and present in the log
files being processed). Processed data may also be exported into most
database and spreadsheet programs that support tab delimited data formats.
The Webalizer supports CLF (common log format) log files, as well as
Combined log formats as defined by NCSA and others, and variations of these
which it attempts to handle intelligently. In addition, wu-ftpd xferlog
formatted logs and squid proxy logs are supported.
Gzip compressed logs may now be used as input directly. Any log filename
that ends with a '.gz'xtension will be assumed to be in gzip format and
uncompressed on the fly as it is being read. In addition, the Webalizer
also supports DNS lookup capabilities if enabled at compile time.
presented, along with the ability to display usage by site, URL,
referrer, user agent (browser), search string, entry/exit page, username
and country (some information is only available if supported and present
in the log files being processed). Processed data may also be exported
into most database and spreadsheet programs that support tab delimited
data formats.
The OpenBSD port enables Reverse-DNS lookup by default.