head	1.6;
access;
symbols
	RELEASE_5_1_0:1.5
	RELEASE_4_8_0:1.5
	RELEASE_5_0_0:1.5
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.4
	RELEASE_4_6_1:1.4
	RELEASE_4_6_0:1.4
	RELEASE_5_0_DP1:1.4
	RELEASE_4_5_0:1.4
	RELEASE_4_4_0:1.4
	RELEASE_4_3_0:1.4
	RELEASE_4_2_0:1.2
	RELEASE_4_1_1:1.2
	RELEASE_4_1_0:1.2
	RELEASE_3_5_0:1.2
	RELEASE_4_0_0:1.2
	RELEASE_3_4_0:1.1.1.1
	RELEASE_3_3_0:1.1.1.1
	v0_9_9b:1.1.1.1
	SHIPLEY:1.1.1;
locks; strict;
comment	@# @;


1.6
date	2003.09.04.08.58.27;	author edwin;	state dead;
branches;
next	1.5;

1.5
date	2002.12.22.17.10.31;	author ijliao;	state Exp;
branches;
next	1.4;

1.4
date	2000.12.23.03.05.41;	author dannyboy;	state Exp;
branches;
next	1.3;

1.3
date	2000.12.21.17.52.39;	author roam;	state Exp;
branches;
next	1.2;

1.2
date	99.12.24.04.25.45;	author steve;	state Exp;
branches;
next	1.1;

1.1
date	99.06.09.01.25.02;	author steve;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.06.09.01.25.02;	author steve;	state Exp;
branches;
next	;


desc
@@


1.6
log
@port update: security/firewalk 1.0 -> 5.0

	I'll be happy to take maintainership over this one. I removed
	the BROKEN notice on versions older than 3, as this was
	completely rewritten and I feel somewhat optimistic today.
	Please tell me if this is proves wrong.  The patch to change
	the Makefile is also not required anymore, I hope the
	configure is doing the right magic, as I haven't tested it
	when PREFIX!=/usr/local

PR:		ports/54473
Submitted by:	Yonatan@@xpert.com <Yonatan@@xpert.com>
@
text
@--- Makefile.in.orig	Sun Feb  4 05:24:09 2001
+++ Makefile.in	Sat Nov 30 03:20:58 2002
@@@@ -7,13 +7,14 @@@@
 #   @@configure_input@@
 
 FIREWALK    =   firewalk
-FIREWALK_LOC=   /usr/local
+FIREWALK_LOC=   $(PREFIX)
 FIREWALK_MAN=   $(FIREWALK).1
 INSTALL     =   ./install-sh
-DEFINES     +=  @@DEFS@@ `libnet-config --defines`
+LIBNET_CONFIG=	$(PREFIX)/bin/libnet-config
+DEFINES     +=  @@DEFS@@ `$(LIBNET_CONFIG) --defines`
 CFLAGS      =   @@CFLAGS@@
 CPPFLAGS    =   @@CPPFLAGS@@
-LIBS        =   -lnet -lpcap @@FW_GTK_CONFIG@@ `libnet-config --libs`
+LIBS        =   @@FW_GTK_CONFIG@@ `$(LIBNET_CONFIG) --libs` -lpcap @@LDFLAGS@@
 OBJECTS     =   main.o firewalk.o watcher.o p_cap.o signal.o \
 		packet.o udptcpwalk.o port_list.o util.o @@FW_GTK_OBJS@@
 
@


1.5
log
@- Fix MASTER_SITES
- Support LOCALBASE properly

PR:		45862
Submitted by:	Ports Fury
@
text
@@


1.4
log
@Then -> than in pkg-descr, remove extra blank line in patch-aa.

PR:		23723
Submitted by:	olgeni@@uli.it
@
text
@d1 2
a2 2
--- Makefile.in.orig	Fri Nov 19 06:20:56 1999
+++ Makefile.in	Wed Sep 27 02:00:42 2000
d15 1
a15 1
-CPPFLAGS    =   @@CPPFLAGS@@
d17 1
a17 2
+CPPFLAGS    =   -I$(PREFIX)/include @@CPPFLAGS@@
+LIBS        =   -L$(PREFIX)/lib @@FW_GTK_CONFIG@@ `$(LIBNET_CONFIG) --libs` -lpcap
d20 1
@


1.3
log
@Update to 0.99.1; the old one was not even fetchable anymore.

PR:		23714
Submitted by:	Roman Shterenzon <roman@@xpert.com>
Silence by:	maintainer (according to the PR)
@
text
@a20 1
 
@


1.2
log
@Make this compile again after the libnet updates.

PR:		15645
@
text
@d1 2
a2 2
--- Makefile.in.orig	Thu Apr 29 01:16:53 1999
+++ Makefile.in	Thu Dec 23 20:27:01 1999
d11 3
a13 2
+LIBNET_CONFIG = $(PREFIX)/bin/libnet-config
 DEFINES     +=  @@DEFS@@
d16 3
a18 3
-LIBS        =   -lnet -lpcap @@FW_GTK_CONFIG@@
+CPPFLAGS    =   `$(LIBNET_CONFIG) --defines` -I$(PREFIX)/include @@CPPFLAGS@@
+LIBS        =   -L$(PREFIX)/lib `$(LIBNET_CONFIG) --libs` -lpcap @@FW_GTK_CONFIG@@
@


1.1
log
@Initial revision
@
text
@d1 20
a20 21
*** Makefile.in-	Sun May  9 23:48:29 1999
--- Makefile.in	Sun May  9 23:49:07 1999
***************
*** 12,19 ****
  INSTALL     =   ./install-sh
  DEFINES     +=  @@DEFS@@
  CFLAGS      =   @@CFLAGS@@
! CPPFLAGS    =   @@CPPFLAGS@@
! LIBS        =   -lnet -lpcap @@FW_GTK_CONFIG@@
  OBJECTS     =   main.o firewalk.o watcher.o p_cap.o signal.o \
  		packet.o udptcpwalk.o port_list.o util.o @@FW_GTK_OBJS@@
  
--- 12,19 ----
  INSTALL     =   ./install-sh
  DEFINES     +=  @@DEFS@@
  CFLAGS      =   @@CFLAGS@@
! CPPFLAGS    =   -I/usr/local/include @@CPPFLAGS@@
! LIBS        =   -L/usr/local/lib -lnet -lpcap @@FW_GTK_CONFIG@@
  OBJECTS     =   main.o firewalk.o watcher.o p_cap.o signal.o \
  		packet.o udptcpwalk.o port_list.o util.o @@FW_GTK_OBJS@@
  
@


1.1.1.1
log
@Initial import of firewalk version 0.99beta.
A network auditing tool.

PR:		11641
Submitted by:	Peter Shipley <shipley@@dis.org>
@
text
@@
