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 | 6079d1e3c0605c06de847cd193dfe8e3fbc37c62 (patch) | |
tree | 7d2ad05bee06a15dd2929f7cd13b33f42e70c8b8 /chat/fisg/patches | |
parent | e11ad6ba4b5c555e9fb403fe917c90ac68c2bc0c (diff) | |
download | pkgsrc-6079d1e3c0605c06de847cd193dfe8e3fbc37c62.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/fisg/patches')
-rw-r--r-- | chat/fisg/patches/patch-aa | 26 |
1 files changed, 26 insertions, 0 deletions
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 |