summaryrefslogtreecommitdiff
path: root/www/webreport
diff options
context:
space:
mode:
Diffstat (limited to 'www/webreport')
-rw-r--r--www/webreport/Makefile37
-rw-r--r--www/webreport/distinfo2
-rw-r--r--www/webreport/files/patch-Makefile22
-rw-r--r--www/webreport/files/patch-webreport.c42
-rw-r--r--www/webreport/files/pkg-message.in9
-rw-r--r--www/webreport/pkg-descr6
6 files changed, 0 insertions, 118 deletions
diff --git a/www/webreport/Makefile b/www/webreport/Makefile
deleted file mode 100644
index 39e5b81a530b..000000000000
--- a/www/webreport/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# Created by: ismail@enderunix.org
-# $FreeBSD$
-
-PORTNAME= webreport
-PORTVERSION= 1.5
-PORTREVISION= 1
-CATEGORIES= www
-MASTER_SITES= http://www.inter7.com/webreport/
-
-MAINTAINER= ismail@EnderUNIX.org
-COMMENT= WebReport is a web log statistics program for web hosting sites
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-SUB_FILES= pkg-message
-PORTDOCS= INSTALL
-PLIST_FILES= bin/webreport etc/webreport.conf-dist
-
-# silence clang errors on 10.0+
-CFLAGS+= -Wno-return-type
-
-OPTIONS_DEFINE= DOCS
-
-post-patch:
- @${REINPLACE_CMD} -e 's,ulong,unsigned long,;s,/etc/,${PREFIX}/etc/,' ${WRKSRC}/webreport.h
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/webreport ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_DATA} ${WRKSRC}/webreport.conf ${STAGEDIR}${PREFIX}/etc/webreport.conf-dist
-
-do-install-DOCS-on:
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
-
-.include <bsd.port.mk>
diff --git a/www/webreport/distinfo b/www/webreport/distinfo
deleted file mode 100644
index fc1230241c1d..000000000000
--- a/www/webreport/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (webreport-1.5.tar.gz) = 3d46720744e4c529fde322a68e97d57f0aa2fbeda46c637b540391a659d2ade4
-SIZE (webreport-1.5.tar.gz) = 25501
diff --git a/www/webreport/files/patch-Makefile b/www/webreport/files/patch-Makefile
deleted file mode 100644
index 4a083af36b83..000000000000
--- a/www/webreport/files/patch-Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
---- Makefile.orig Mon Oct 8 18:09:18 2001
-+++ Makefile Tue Feb 17 15:22:44 2004
-@@ -24,8 +24,8 @@
- DEBUG= -g
- #OPT= -O2
-
--CFLAGS= -c $(OPT) $(DEBUG)
--LDFLAGS= $(DEBUG)
-+CFLAGS+= -c $(OPT)
-+#LDFLAGS+= $(LDFLAGS)
-
- .c.o:
- $(CC) $(CFLAGS) $<
-@@ -33,6 +33,8 @@
- BINS = webreport
-
- OBJ = webreport.o
-+
-+all: webreport
-
- webreport: $(OBJ) webreport.h
- $(CC) $(LDFLAGS) $(OBJ) -o webreport
diff --git a/www/webreport/files/patch-webreport.c b/www/webreport/files/patch-webreport.c
deleted file mode 100644
index 0ba8a884e090..000000000000
--- a/www/webreport/files/patch-webreport.c
+++ /dev/null
@@ -1,42 +0,0 @@
---- webreport.c.org Sat Feb 7 17:06:38 2004
-+++ webreport.c Sat Feb 7 17:06:47 2004
-@@ -22,7 +22,7 @@
- #include <errno.h>
- #include <string.h>
- #include <time.h>
--#include <getopt.h>
-+#include <unistd.h>
-
- #include <sys/types.h>
- #include <sys/stat.h>
-@@ -808,7 +808,7 @@
- }
-
- char *comma_string_long(in_long )
-- ulong in_long;
-+ unsigned long in_long;
- {
- char tmpbuf[MAX_TINY_BUF];
- static char tmpbuf1[MAX_TINY_BUF];
-@@ -1866,10 +1866,10 @@
-
- report_open_files()
- {
-- strncpy( Globals.TextReportName, "/usr/tmp/webreport.text.XXXXXX", 100);
-+ strncpy( Globals.TextReportName, "/var/tmp/webreport.text.XXXXXX", 100);
- mkstemp(Globals.TextReportName);
-
-- strncpy( Globals.HTMLReportName, "/usr/tmp/webreport.html.XXXXXX", 100);
-+ strncpy( Globals.HTMLReportName, "/var/tmp/webreport.html.XXXXXX", 100);
- mkstemp(Globals.HTMLReportName);
-
- Globals.TextReport = fopen(Globals.TextReportName, "w");
-@@ -2084,7 +2084,7 @@
- fputs( Globals.TmpBuf, fs);
- }
- } else {
-- fprintf( Globals.HTMLReport,
-+ fprintf(Globals.HTMLReport,
- "Subject: %s\n", Globals.cur_site->title);
- fprintf( Globals.HTMLReport,
- "Content-Type: text/html; charset=us-ascii\n");
diff --git a/www/webreport/files/pkg-message.in b/www/webreport/files/pkg-message.in
deleted file mode 100644
index d5935816ce74..000000000000
--- a/www/webreport/files/pkg-message.in
+++ /dev/null
@@ -1,9 +0,0 @@
-[
-{ type: install
- message: <<EOM
-Read the %%PREFIX%%/share/doc/webreport/INSTALL to configure webreport
-
-Edit the %%PREFIX%%/etc/webreport.conf
-EOM
-}
-]
diff --git a/www/webreport/pkg-descr b/www/webreport/pkg-descr
deleted file mode 100644
index 50dad285c9ed..000000000000
--- a/www/webreport/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-WebReport is a web log statistics reporting program especially designed for
-virtual web hosting sites. It is also very useful for single hosting sites.
-The main difference between WebReport and other statistics programs is a
-configuration file which allows for easy manipulation of the features.
-
-WWW: http://www.inter7.com/?page=webreport