diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2003-12-03 23:13:00 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2003-12-03 23:13:00 +0000 |
commit | eabf27e083a398718ff7d4bcce57a3002b14ccff (patch) | |
tree | 7d2ad05bee06a15dd2929f7cd13b33f42e70c8b8 /chat | |
parent | 2e8f79540a9dba2a0f2dd34f779550280f07cb14 (diff) | |
download | pkgsrc-eabf27e083a398718ff7d4bcce57a3002b14ccff.tar.gz |
Initial import of fisg 0.2.0 from pkgsrc-wip, packaged by Soren Jacobsen.
FISG is an IRC statistics generator that is meant to be, well, fast. It
handles large log files much more efficiently than PISG, and doesn't require
perl.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/fisg/DESCR | 3 | ||||
-rw-r--r-- | chat/fisg/Makefile | 15 | ||||
-rw-r--r-- | chat/fisg/PLIST | 22 | ||||
-rw-r--r-- | chat/fisg/distinfo | 5 | ||||
-rw-r--r-- | chat/fisg/patches/patch-aa | 26 |
5 files changed, 71 insertions, 0 deletions
diff --git a/chat/fisg/DESCR b/chat/fisg/DESCR new file mode 100644 index 00000000000..f1b0a8554bc --- /dev/null +++ b/chat/fisg/DESCR @@ -0,0 +1,3 @@ +FISG is an IRC statistics generator that is meant to be, well, fast. It +handles large log files much more efficiently than PISG, and doesn't require +perl. diff --git a/chat/fisg/Makefile b/chat/fisg/Makefile new file mode 100644 index 00000000000..e77bae10cee --- /dev/null +++ b/chat/fisg/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/12/03 23:13:00 xtraeme Exp $ + +DISTNAME= fisg-0.2.0 +WRKSRC= ${WRKDIR}/${DISTNAME}/src +CATEGORIES= chat textproc +MASTER_SITES= http://www.tnsp.org/files/ + +MAINTAINER= snj@pobox.com +HOMEPAGE= http://www.tnsp.org/fisg.php +COMMENT= Fast IRC statistics generator + +USE_BUILDLINK2= YES +USE_GMAKE= YES + +.include "../../mk/bsd.pkg.mk" diff --git a/chat/fisg/PLIST b/chat/fisg/PLIST new file mode 100644 index 00000000000..c0b32735719 --- /dev/null +++ b/chat/fisg/PLIST @@ -0,0 +1,22 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/12/03 23:13:00 xtraeme Exp $ +bin/fisg +share/examples/fisg/example.cfg +share/examples/fisg/users.cfg +share/fisg/blue-h.png +share/fisg/blue-v.png +share/fisg/green-h.png +share/fisg/green-v.png +share/fisg/happy1.gif +share/fisg/happy2.gif +share/fisg/happy3.gif +share/fisg/happy4.gif +share/fisg/happy5.gif +share/fisg/happy6.gif +share/fisg/red-h.png +share/fisg/red-v.png +share/fisg/style-c64.css +share/fisg/style-pisg.css +share/fisg/yellow-h.png +share/fisg/yellow-v.png +@dirrm share/examples/fisg +@dirrm share/fisg diff --git a/chat/fisg/distinfo b/chat/fisg/distinfo new file mode 100644 index 00000000000..dea4dc342a0 --- /dev/null +++ b/chat/fisg/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/12/03 23:13:00 xtraeme Exp $ + +SHA1 (fisg-0.2.0.tar.gz) = e145f05a7d1485ef9ac2c3cf77d3ed8ec92aaf59 +Size (fisg-0.2.0.tar.gz) = 76700 bytes +SHA1 (patch-aa) = 7986cc039df913aed14cafffb143ede3008ca068 diff --git a/chat/fisg/patches/patch-aa b/chat/fisg/patches/patch-aa new file mode 100644 index 00000000000..9b5e2fc0c96 --- /dev/null +++ b/chat/fisg/patches/patch-aa @@ -0,0 +1,26 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/12/03 23:13:00 xtraeme Exp $ +--- Makefile.orig 2003-02-18 02:59:18.000000000 -0800 ++++ Makefile 2003-09-28 18:41:07.000000000 -0700 +@@ -1,11 +1,19 @@ + # + # Makefile for UNIX + # +-RM=rm +-CC=gcc +-CFLAGS= -g -O2 -Wall ++#RM=rm ++#CC=gcc ++#CFLAGS= -g -O2 -Wall + + FISGEXE=fisg + TARGETS=$(FISGEXE) strmatch + + include Makefile.gen ++ ++install: $(FISGEXE) ++ $(BSD_INSTALL_PROGRAM) $(FISGEXE) $(PREFIX)/bin ++ $(BSD_INSTALL_DATA_DIR) $(PREFIX)/share/examples/fisg ++ $(BSD_INSTALL_DATA) ../example.cfg $(PREFIX)/share/examples/fisg ++ $(BSD_INSTALL_DATA) ../users.cfg $(PREFIX)/share/examples/fisg ++ $(BSD_INSTALL_DATA_DIR) $(PREFIX)/share/fisg ++ $(BSD_INSTALL_DATA) ../data/* $(PREFIX)/share/fisg |