diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-23 21:03:30 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-23 21:03:30 +0000 |
commit | 29b876340ca834760604d6e34e217fe68696924b (patch) | |
tree | 78b85711e203c38398488e06c3d67428f2639d2d /sysutils/slst | |
parent | 2f95cf14bcbf895bbb01c906cc95d5d35957d8e4 (diff) | |
download | ports-29b876340ca834760604d6e34e217fe68696924b.tar.gz ports-29b876340ca834760604d6e34e217fe68696924b.zip |
Notes
Diffstat (limited to 'sysutils/slst')
-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 |
4 files changed, 80 insertions, 0 deletions
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/ |