? skipfish/files/patch-ab Index: skipfish/Makefile =================================================================== RCS file: /home/pcvs/ports/security/skipfish/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- skipfish/Makefile 25 Mar 2010 06:43:36 -0000 1.1 +++ skipfish/Makefile 31 Mar 2010 19:02:19 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/security/skipfish/Makefile,v 1.1 2010/03/25 06:43:36 niels Exp $ PORTNAME= skipfish -PORTVERSION= 1.11b +PORTVERSION= 1.25b CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} EXTRACT_SUFX= .tgz Index: skipfish/distinfo =================================================================== RCS file: /home/pcvs/ports/security/skipfish/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- skipfish/distinfo 25 Mar 2010 06:43:36 -0000 1.1 +++ skipfish/distinfo 31 Mar 2010 19:02:19 -0000 @@ -1,3 +1,3 @@ -MD5 (skipfish-1.11b.tgz) = 49b2e116808688c5e52378dfe568c885 -SHA256 (skipfish-1.11b.tgz) = ed3d45cf54770db9cae12422c36f1e3f90857da4381a47956b355bc9d7f35ea0 -SIZE (skipfish-1.11b.tgz) = 170563 +MD5 (skipfish-1.25b.tgz) = 6563633524e58592081b169fdbb28d47 +SHA256 (skipfish-1.25b.tgz) = a16b7ab5141934e0af77551acccf8c1b73fe3b0e70d7814b5515b281f6f4a15f +SIZE (skipfish-1.25b.tgz) = 174399 Index: skipfish/files/patch-aa =================================================================== RCS file: /home/pcvs/ports/security/skipfish/files/patch-aa,v retrieving revision 1.1 diff -u -r1.1 patch-aa --- skipfish/files/patch-aa 25 Mar 2010 06:43:37 -0000 1.1 +++ skipfish/files/patch-aa 31 Mar 2010 19:02:19 -0000 @@ -1,15 +1,39 @@ ---- Makefile.orig 2010-03-22 20:34:04.000000000 +0100 -+++ Makefile 2010-03-22 20:34:40.000000000 +0100 -@@ -35,9 +35,9 @@ +--- Makefile.orig 2010-03-25 20:15:57.000000000 +0100 ++++ Makefile 2010-03-25 20:23:38.000000000 +0100 +@@ -25,12 +25,12 @@ + INCFILES = alloc-inl.h string-inl.h debug.h types.h http_client.h \ + database.h crawler.h analysis.h config.h report.h +-CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -D_FORTIFY_SOURCE=0 \ +- -I/usr/local/include/ -I/opt/local/include/ $(CFLAGS) +-CFLAGS_DBG = -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1 $(CFLAGS_GEN) +-CFLAGS_OPT = -O3 -Wno-format $(CFLAGS_GEN) ++CFLAGS_GEN = ${CFLAGS} -Wall -funsigned-char -g -ggdb -D_FORTIFY_SOURCE=0 \ ++ -I${LOCALBASE}/include/ $(CFLAGS) ++CFLAGS_DBG = ${CFLAGS} -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1 $(CFLAGS_GEN) ++CFLAGS_OPT = ${CFLAGS} -O3 -Wno-format $(CFLAGS_GEN) + +-LDFLAGS += -L/usr/local/lib/ -L/opt/local/lib ++LDFLAGS += -L${LOCALBASE}/lib/ -L${LOCALBASE}/lib + LIBS += -lcrypto -lssl -lidn -lz + + all: $(PROGNAME) +@@ -38,12 +38,12 @@ $(PROGNAME): $(PROGNAME).c $(OBJFILES) $(INCFILES) - $(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_OPT) $(OBJFILES) $(LDFLAGS) + $(CC) $(LDFLAGS) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_OPT) \ + $(OBJFILES) $(LIBS) - @echo -- @echo "NOTE: See dictionaries/README-FIRST to pick a dictionary for the tool." +- @echo "See dictionaries/README-FIRST to pick a dictionary for the tool." - @echo +- @echo "Having problems with your scans? Be sure to visit:" +- @echo "http://code.google.com/p/skipfish/wiki/KnownIssues" +- @echo ++# @echo ++# @echo "See dictionaries/README-FIRST to pick a dictionary for the tool." +# @echo -+# @echo "NOTE: See dictionaries/README-FIRST to pick a dictionary for the tool." ++# @echo "Having problems with your scans? Be sure to visit:" ++# @echo "http://code.google.com/p/skipfish/wiki/KnownIssues" +# @echo debug: $(PROGNAME).c $(OBJFILES) $(INCFILES) - $(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_DBG) $(OBJFILES) $(LDFLAGS) + $(CC) $(LDFLAGS) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_DBG) \