1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

- remove outdated port

PR:		21875
This commit is contained in:
Dirk Meyer 2001-05-07 16:43:41 +00:00
parent 908015adc3
commit c63d2fb848
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=42375
10 changed files with 0 additions and 1364 deletions

View File

@ -1,57 +0,0 @@
# New ports collection makefile for: webalizer
# Date created: 02.Jun 1998
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
PORTNAME= webalizer
PORTVERSION= 1.30.4
PORTREVISION= 1
CATEGORIES= german www
MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/ \
ftp://ftp.lan-ks.de/pub/FreeBSD/distfiles/
DISTNAME= ${PORTNAME}-1.30-04-src
EXTRACT_SUFX= .tgz
MAINTAINER= dirk.meyer@dinoex.sub.org
LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd
WEBALIZER_LANG?= german
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-gdlib=${PREFIX}/lib \
--with-gd=${PREFIX}/include/gd \
--with-language=${WEBALIZER_LANG}
CONFIGURE_ENV+= LDFLAGS="-L${PREFIX}/lib"
BIN1= de-webalizer
MAN1= de-webalizer.1
DOC1= CHANGES COPYING Copyright INSTALL \
README country-codes.txt webalizer.LSM
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src$//}
pre-configure:
@${PERL5} -pi -e "s=/etc=${PREFIX}/etc=" ${WRKSRC}/webalizer.c
do-install:
.for i in ${BIN1}
@${INSTALL_SCRIPT} ${WRKSRC}/webalizer ${PREFIX}/bin/${i}
.endfor
post-install:
${INSTALL_MAN} ${WRKSRC}/webalizer.1 ${PREFIX}/man/man1/de-webalizer.1
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/de-webalizer
.for i in ${DOC1}
@${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/de-webalizer/${i}
.endfor
.endif
${MKDIR} ${PREFIX}/share/examples/de-webalizer
.for i in msfree.gif sample.conf webalizer.gif
@${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/examples/de-webalizer/${i}
.endfor
@if [ ! -f ${PREFIX}/etc/de-webalizer.conf-dist ]; then \
${INSTALL_DATA} ${WRKSRC}/sample.conf \
${PREFIX}/etc/de-webalizer.conf-dist ; \
fi
.include <bsd.port.mk>

View File

@ -1 +0,0 @@
MD5 (webalizer-1.30-04-src.tgz) = f151b5e811bcdaa4ba72bca447f5cd44

View File

@ -1,11 +0,0 @@
--- configure.orig Wed Oct 27 18:18:41 1999
+++ configure Wed Oct 27 18:18:52 1999
@@ -1054,7 +1054,7 @@
fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
echo "$ac_t""yes" 1>&6
- LIBS="-lgd ${LIBS}"; HAVE_LIBGD="yes"
+ LIBS="-lgd -lpng ${LIBS}"; HAVE_LIBGD="yes"
else
echo "$ac_t""no" 1>&6
HAVE_LIBGD=""

View File

@ -1,40 +0,0 @@
--- webalizer.c.orig Sun Jul 11 19:36:10 1999
+++ webalizer.c Mon May 29 21:42:53 2000
@@ -1981,8 +1981,8 @@
/* fill in filenames */
sprintf(html_fname,"usage_%04d%02d.%s",cur_year,cur_month,html_ext);
- sprintf(gif1_fname,"daily_usage_%04d%02d.gif",cur_year,cur_month);
- sprintf(gif2_fname,"hourly_usage_%04d%02d.gif",cur_year,cur_month);
+ sprintf(gif1_fname,"daily_usage_%04d%02d.png",cur_year,cur_month);
+ sprintf(gif2_fname,"hourly_usage_%04d%02d.png",cur_year,cur_month);
/* create GIF images for web page */
sprintf(dtitle,"%s %s %d",msg_hmth_du,l_month[cur_month-1],cur_year);
@@ -3125,7 +3125,7 @@
pie_legend[i]=top_ctrys[i]->desc;
}
sprintf(pie_title,"%s %s %d",msg_ctry_use,l_month[cur_month-1],cur_year);
- sprintf(pie_fname,"ctry_usage_%04d%02d.gif",cur_year,cur_month);
+ sprintf(pie_fname,"ctry_usage_%04d%02d.png",cur_year,cur_month);
pie_chart(pie_fname,pie_title,t_hit,pie_data,pie_legend); /* do it */
@@ -3213,7 +3213,7 @@
i=(s_mth==12)?1:s_mth+1;
- year_graph6x( "usage.gif", /* filename */
+ year_graph6x( "usage.png", /* filename */
buffer, /* graph title */
i, /* last month */
hist_hit, /* data set 1 */
@@ -3234,7 +3234,7 @@
}
write_html_head(msg_main_per);
/* year graph */
- fprintf(out_fp,"<IMG SRC=\"usage.gif\" ALT=\"%s\" " \
+ fprintf(out_fp,"<IMG SRC=\"usage.png\" ALT=\"%s\" " \
"HEIGHT=256 WIDTH=512><P>\n",buffer);
/* month table */
fprintf(out_fp,"<TABLE WIDTH=600 BORDER=2 CELLSPACING=1 CELLPADDING=1>\n");

View File

@ -1,38 +0,0 @@
--- graphs.c.orig Tue Jun 15 06:33:40 1999
+++ graphs.c Sat Jul 31 10:43:48 1999
@@ -285,7 +285,7 @@
/* save gif image */
if ((out = fopen(fname, "wb")) != NULL)
{
- gdImageGif(im, out);
+ gdImagePng(im, out);
fclose(out);
}
/* deallocate memory */
@@ -501,7 +501,7 @@
/* open file for writing */
if ((out = fopen(fname, "wb")) != NULL)
{
- gdImageGif(im, out);
+ gdImagePng(im, out);
fclose(out);
}
/* deallocate memory */
@@ -614,7 +614,7 @@
/* save as gif file */
if ( (out = fopen(fname, "wb")) != NULL)
{
- gdImageGif(im, out);
+ gdImagePng(im, out);
fclose(out);
}
/* deallocate memory */
@@ -700,7 +700,7 @@
/* save gif image */
if ((out = fopen(fname, "wb")) != NULL)
{
- gdImageGif(im, out);
+ gdImagePng(im, out);
fclose(out);
}
/* deallocate memory */

File diff suppressed because it is too large Load Diff

View File

@ -1 +0,0 @@
A web server log file analysis program

View File

@ -1,22 +0,0 @@
What is The Webalizer?
----------------------
The 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) and country (user agent and referrer are only
available if your web server procduces Combined log format files).
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.
Keywords: Web Analysis, Log Analysis, Usage Statistics, Linux, Unix
Author: Bradford L. Barrett
Maintained-by: Bradford L. Barrett
WWW: http://www.mrunix.net/webalizer/
FTP: ftp://www.mrunix.net/pub/webalizer/
Platforms: Linux, SCO, other UNIX's
Copying-policy: GPL

View File

@ -1,14 +0,0 @@
bin/de-webalizer
etc/de-webalizer.conf-dist
share/doc/de-webalizer/CHANGES
share/doc/de-webalizer/COPYING
share/doc/de-webalizer/Copyright
share/doc/de-webalizer/INSTALL
share/doc/de-webalizer/README
share/doc/de-webalizer/country-codes.txt
share/doc/de-webalizer/webalizer.LSM
@dirrm share/doc/de-webalizer
share/examples/de-webalizer/msfree.gif
share/examples/de-webalizer/sample.conf
share/examples/de-webalizer/webalizer.gif
@dirrm share/examples/de-webalizer

View File

@ -1,10 +0,0 @@
#! /bin/sh
#
# $FreeBSD$
#
# only one central config file in $PREFIX/etc
# -andreas
perl -pi -e "s=!!PREFIX!!=$PREFIX=" ${WRKSRC}/webalizer.c