diff options
author | andreas <andreas@FreeBSD.org> | 1998-04-18 17:47:14 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1998-04-18 17:47:14 +0800 |
commit | a88b6be858e44e3bc60355317506adef66029fd9 (patch) | |
tree | 16f4e87684b28e619953de2b5c1673473ca4528e /www/http-analyze/files | |
parent | fa04099287cfcb2e2b6e63ae1361298bd87188a4 (diff) | |
download | freebsd-ports-gnome-a88b6be858e44e3bc60355317506adef66029fd9.tar.gz freebsd-ports-gnome-a88b6be858e44e3bc60355317506adef66029fd9.tar.zst freebsd-ports-gnome-a88b6be858e44e3bc60355317506adef66029fd9.zip |
some problem detected by knarf and fixes by him and me:
- http-analyze installed into the wrong path, one path component has
been duplicated, fixed that in Makefile and sanitized the PLIST
this changed patch-aa
- had to add a post.install script to teach config.h our $(PREFIX) path
- changed config.h, so that post.configure script has it easier to patch,
this changed patch-ab
- added @dirrm lines in PLIST, to deinstall more thoroughly
- tested packaging
Submitted by: Frank Bartels <knarf@camelot.de>
Diffstat (limited to 'www/http-analyze/files')
-rw-r--r-- | www/http-analyze/files/patch-aa | 6 | ||||
-rw-r--r-- | www/http-analyze/files/patch-ab | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/www/http-analyze/files/patch-aa b/www/http-analyze/files/patch-aa index 6cb751f70463..af708858ac85 100644 --- a/www/http-analyze/files/patch-aa +++ b/www/http-analyze/files/patch-aa @@ -1,5 +1,5 @@ --- Makefile.orig Thu Apr 2 15:53:41 1998 -+++ Makefile Fri Apr 10 20:39:26 1998 ++++ Makefile Sat Apr 18 11:37:54 1998 @@ -28,9 +28,9 @@ # SVR4 /usr/share/man/cat1 - 1 # Linux /usr/local/man/man1 - man @@ -7,7 +7,7 @@ -LOCALLIB = /usr/local/lib -LOCALBIN = /usr/local/bin -LOCALMAN = /usr/local/man/cat1 -+LOCALLIB = $(PREFIX)/lib/http-analyze ++LOCALLIB = $(PREFIX)/lib +LOCALBIN = $(PREFIX)/bin +LOCALMAN = $(PREFIX)/man/man1 @@ -44,7 +44,7 @@ #CC = gcc +# FreeBSD -+DEFINES = -DBSD -DHA_LIBDIR="$(LOCALLIB)" ++DEFINES = -DBSD -DHA_LIBDIR="$(LOCALLIB)/http-analyze" +PLATFORM = + # HP/UX diff --git a/www/http-analyze/files/patch-ab b/www/http-analyze/files/patch-ab index 86d7fd5c5b1d..fa00671a860b 100644 --- a/www/http-analyze/files/patch-ab +++ b/www/http-analyze/files/patch-ab @@ -1,12 +1,12 @@ ---- config.h.orig Fri Apr 10 20:27:39 1998 -+++ config.h Fri Apr 10 20:28:54 1998 +--- config.h.orig Thu Apr 2 15:53:41 1998 ++++ config.h Sat Apr 18 11:31:36 1998 @@ -167,7 +167,7 @@ # define HA_LIBDIR "/usr/local/lib/http-analyze" #endif -#define REGID_FILE HA_LIBDIR "/REGID" -#define BUTTON_DIR HA_LIBDIR "/btn" -+#define REGID_FILE "HA_LIBDIR/REGID" -+#define BUTTON_DIR "HA_LIBDIR/btn" ++#define REGID_FILE "!!REGID_FILE!!" ++#define BUTTON_DIR "!!BUTTON_DIR!!" /* End of user configuration section. */ |