diff options
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/slst/Makefile | 21 | ||||
-rw-r--r-- | sysutils/slst/distinfo | 3 | ||||
-rw-r--r-- | sysutils/slst/files/patch-Makefile | 50 | ||||
-rw-r--r-- | sysutils/slst/pkg-descr | 6 |
5 files changed, 81 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 930a5d8629d8..3c487cf3b3bf 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -494,6 +494,7 @@ SUBDIR += sleuthkit SUBDIR += slmon SUBDIR += sloth + SUBDIR += slst SUBDIR += smartmontools SUBDIR += snowlog SUBDIR += socket diff --git a/sysutils/slst/Makefile b/sysutils/slst/Makefile new file mode 100644 index 000000000000..2c916528e039 --- /dev/null +++ b/sysutils/slst/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: slst +# Date created: 22 January 2006 +# Whom: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net> +# +# $FreeBSD$ +# + +PORTNAME= slst +PORTVERSION= 0.2 +CATEGORIES= sysutils +MASTER_SITES= http://www.vanheusden.com/slst/ +EXTRACT_SUFX= .tgz + +MAINTAINER= CPE1704TKS@bellsouth.net +COMMENT= Generates syslog statistics to detect tendencies and unexpected change + +ALL_TARGET= all + +PLIST_FILES= bin/slst + +.include <bsd.port.mk> diff --git a/sysutils/slst/distinfo b/sysutils/slst/distinfo new file mode 100644 index 000000000000..ca0b49ad4208 --- /dev/null +++ b/sysutils/slst/distinfo @@ -0,0 +1,3 @@ +SIZE (slst-0.2.tgz) = 5746 +SHA256 (slst-0.2.tgz) = 13b5036dd89eb25759f9cac7b6223cf08c108934ede1f9066a6483f09a18c492 +MD5 (slst-0.2.tgz) = 7223a420fe03bf1f074f8084021b20c6 diff --git a/sysutils/slst/files/patch-Makefile b/sysutils/slst/files/patch-Makefile new file mode 100644 index 000000000000..f31a5432fbaf --- /dev/null +++ b/sysutils/slst/files/patch-Makefile @@ -0,0 +1,50 @@ +*** Makefile.orig Sun Jan 22 07:29:28 2006 +--- Makefile Sun Jan 22 07:38:16 2006 +*************** +*** 1,10 **** +! CC=gcc + +! CXXFLAGS=-Wall -O2 +! CFLAGS=-Wall -O2 +! LDFLAGS=-lstdc++ + VERSION=0.2 + + OBJS=slst.o error.o utils.o intcnt.o array.o + + all: slst +--- 1,10 ---- +! #CC=gcc + +! #CXXFLAGS=-Wall -O2 +! #CFLAGS=-Wall -O2 +! LDFLAGS+=-lstdc++ + VERSION=0.2 + + OBJS=slst.o error.o utils.o intcnt.o array.o + + all: slst +*************** +*** 12,22 **** + slst: $(OBJS) + $(CC) -Wall -W $(OBJS) $(LDFLAGS) -o slst + # strip slst + + install: slst +! cp slst /usr/bin + + clean: + rm -f $(OBJS) slst core + + package: clean +--- 12,22 ---- + slst: $(OBJS) + $(CC) -Wall -W $(OBJS) $(LDFLAGS) -o slst + # strip slst + + install: slst +! ${INSTALL} -m 755 slst ${PREFIX}/bin + + clean: + rm -f $(OBJS) slst core + + package: clean diff --git a/sysutils/slst/pkg-descr b/sysutils/slst/pkg-descr new file mode 100644 index 000000000000..8d94fe814f33 --- /dev/null +++ b/sysutils/slst/pkg-descr @@ -0,0 +1,6 @@ +slst generates statistics from the output of syslog. + +With slst one can find tendencies and unexpected changes in the behaviour of +the running processes. + +WWW: http://www.vanheusden.com/recoverdm/ |