diff options
author | dannyboy <dannyboy@FreeBSD.org> | 2001-03-04 17:08:54 +0000 |
---|---|---|
committer | dannyboy <dannyboy@FreeBSD.org> | 2001-03-04 17:08:54 +0000 |
commit | 5918a438def4a8d0af10077df29562acf5e19bb6 (patch) | |
tree | 4c1f11bbcc488987ac132b9448eb06026328364f /sysutils/installwatch | |
parent | 7771ed546a33e9b9f6b769fa534003a42da48117 (diff) | |
download | FreeBSD-ports-5918a438def4a8d0af10077df29562acf5e19bb6.zip FreeBSD-ports-5918a438def4a8d0af10077df29562acf5e19bb6.tar.gz |
Add installwatch 0.5.6, a file creation/modification logger.
PR: 25504
Submitted by: George Reid <greid@ukug.uk.freebsd.org>
Diffstat (limited to 'sysutils/installwatch')
-rw-r--r-- | sysutils/installwatch/Makefile | 16 | ||||
-rw-r--r-- | sysutils/installwatch/distinfo | 1 | ||||
-rw-r--r-- | sysutils/installwatch/files/patch-aa | 40 | ||||
-rw-r--r-- | sysutils/installwatch/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/installwatch/pkg-descr | 11 | ||||
-rw-r--r-- | sysutils/installwatch/pkg-plist | 3 |
6 files changed, 72 insertions, 0 deletions
diff --git a/sysutils/installwatch/Makefile b/sysutils/installwatch/Makefile new file mode 100644 index 0000000..c7640f5 --- /dev/null +++ b/sysutils/installwatch/Makefile @@ -0,0 +1,16 @@ +# New ports collection makefile for: installwatch +# Date created: 03 March 2001 +# Whom: George Reid <greid@ukug.uk.freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= installwatch +PORTVERSION= 0.5.6 +CATEGORIES= sysutils +MASTER_SITES= http://mayams.net/~izto/ +EXTRACT_SUFX= .tgz + +MAINTAINER= greid@ukug.uk.freebsd.org + +.include <bsd.port.mk> diff --git a/sysutils/installwatch/distinfo b/sysutils/installwatch/distinfo new file mode 100644 index 0000000..8d8b602 --- /dev/null +++ b/sysutils/installwatch/distinfo @@ -0,0 +1 @@ +MD5 (installwatch-0.5.6.tgz) = 678077bad78ff57d9b63141fb73be84e diff --git a/sysutils/installwatch/files/patch-aa b/sysutils/installwatch/files/patch-aa new file mode 100644 index 0000000..87d5281 --- /dev/null +++ b/sysutils/installwatch/files/patch-aa @@ -0,0 +1,40 @@ +--- Makefile.orig Fri Mar 2 02:45:41 2001 ++++ Makefile Sat Mar 3 02:17:12 2001 +@@ -3,7 +3,7 @@ + # Well, the only configurable part is the following variable. + # Make sure the directory you specify exists. + +-PREFIX=/usr/local ++#PREFIX=/usr/local + + # End of configurable part + +@@ -15,10 +15,10 @@ + all: installwatch.so + + installwatch.so: installwatch.o +- ld -shared -o installwatch.so installwatch.o -ldl ++ ld -shared -o installwatch.so installwatch.o + + installwatch.o: installwatch.c localdecls.h +- gcc -Wall -c -DPIC -fPIC -D_REENTRANT -DVERSION=\"$(VERSION)\" installwatch.c ++ $(CC) -Wall -c $(CFLAGS) -DPIC -fPIC -D_REENTRANT -DVERSION=\"$(VERSION)\" installwatch.c + + localdecls.h: + ./create-localdecls +@@ -28,8 +28,6 @@ + + sed -e "s|#PREFIX#|$(PREFIX)|" < installwatch > $(BINDIR)/installwatch + chmod 755 $(BINDIR)/installwatch +- cp contrib/inst2rpm $(BINDIR)/inst2rpm +- chmod 755 $(BINDIR)/inst2rpm + + uninstall: + rm $(LIBDIR)/installwatch.so +@@ -43,7 +41,7 @@ + tar -czvC .. -f ../installwatch-$(VERSION).tar.gz installwatch-$(VERSION) + + test: install +- gcc -Wall -DVERSION=\"$(VERSION)\" -o test-installwatch test-installwatch.c -ldl ++ gcc -Wall -DVERSION=\"$(VERSION)\" -o test-installwatch test-installwatch.c + $(PREFIX)/bin/installwatch ./test-installwatch diff --git a/sysutils/installwatch/pkg-comment b/sysutils/installwatch/pkg-comment new file mode 100644 index 0000000..6bebe48 --- /dev/null +++ b/sysutils/installwatch/pkg-comment @@ -0,0 +1 @@ +A file creation/modification logger diff --git a/sysutils/installwatch/pkg-descr b/sysutils/installwatch/pkg-descr new file mode 100644 index 0000000..137a031 --- /dev/null +++ b/sysutils/installwatch/pkg-descr @@ -0,0 +1,11 @@ +Installwatch is a simple utility which keeps track of which files are +created and modified during the installation of a new program. It's +fast and easy to use. It doesn't require a "pre-install" phase because +it monitors processes while they run. Installwatch works with every +dynamically linked ELF program, by intercepting system calls that +cause file system alterations. + +WWW: http://mayams.net/~izto/installwatch.html + +- George Reid +greid@ukug.uk.freebsd.org diff --git a/sysutils/installwatch/pkg-plist b/sysutils/installwatch/pkg-plist new file mode 100644 index 0000000..786a0a0 --- /dev/null +++ b/sysutils/installwatch/pkg-plist @@ -0,0 +1,3 @@ +bin/installwatch +lib/installwatch.so + |