summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorPatrick Li <pat@FreeBSD.org>2002-04-01 17:20:17 +0000
committerPatrick Li <pat@FreeBSD.org>2002-04-01 17:20:17 +0000
commit13c5b0e0d30cb415c12826982b494d855d62780b (patch)
treef7f1e41e4cd689cc42cb863ef082f4e467cf39be /net
parentUpdate to 4.1.42 (diff)
- Update to 1.5
- Respect CFLAGS, CC PR: 36617 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=57144
Diffstat (limited to 'net')
-rw-r--r--net/ipsorc/Makefile2
-rw-r--r--net/ipsorc/distinfo2
-rw-r--r--net/ipsorc/files/patch-aa32
3 files changed, 28 insertions, 8 deletions
diff --git a/net/ipsorc/Makefile b/net/ipsorc/Makefile
index 3f53e8420064..24b67488d9e0 100644
--- a/net/ipsorc/Makefile
+++ b/net/ipsorc/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= ipsorc
-PORTVERSION= 1.4.4
+PORTVERSION= 1.5
CATEGORIES= net security
MASTER_SITES= http://www.legions.org/~phric/
MASTER_SITE_SUBDIR= ${PORTNAME}
diff --git a/net/ipsorc/distinfo b/net/ipsorc/distinfo
index 99355c508949..7aac27ba74a1 100644
--- a/net/ipsorc/distinfo
+++ b/net/ipsorc/distinfo
@@ -1 +1 @@
-MD5 (ipsorc-1.4.4.tar.gz) = 61a5f1f2450ee8d5e04fe5bfa61e75bc
+MD5 (ipsorc-1.5.tar.gz) = 923149398a7e9caf894c4dfa2f982baa
diff --git a/net/ipsorc/files/patch-aa b/net/ipsorc/files/patch-aa
index a27a02dfc1e3..7108ddcc64b1 100644
--- a/net/ipsorc/files/patch-aa
+++ b/net/ipsorc/files/patch-aa
@@ -1,11 +1,31 @@
---- Makefile.orig Sun Dec 2 14:25:31 2001
-+++ Makefile Sun Dec 2 14:25:45 2001
-@@ -6,6 +6,8 @@
- CON = sorcery.c spells.c ipsorcery.c
- #OBJS = $(SRC:.c=.o)
+--- Makefile.orig Fri Mar 29 16:12:20 2002
++++ Makefile Mon Apr 1 12:15:29 2002
+@@ -1,6 +1,5 @@
+ ## Makefile for IPMagic ##
+
+-CC = cc
+ SPELL = magic
+ SRC = ipmagic.c spellbook.c cauldron.c spells.c tcp.c icmp.c udp.c
+ CON = sorcery.c spells.c ipsorcery.c icmp.c
+@@ -9,16 +8,18 @@
+ default:
+ @echo "Usage: make[gtk|con] then make [gtk-install|con-install]"
+all: con gtk
+
con:
- $(CC) -g -O2 -Wall -ansi $(CON) -o ipmagic
+- $(CC) -g -O2 -Wall -ansi -D_CON_ $(CON) -o ipmagic
++ $(CC) $(CFLAGS) -Wall -ansi -D_CON_ $(CON) -o ipmagic
+
+
+ gtk:
+- $(CC) -g -O2 -Wall -ansi -D_GTK_ $(SRC) -o $(SPELL) `gtk-config --cflags --libs`
++ $(CC) $(CFLAGS) -Wall -ansi -D_GTK_ $(SRC) -o $(SPELL) `/usr/X11R6/bin/gtk12-config --cflags --libs`
+
+
+ solaris:
+- $(CC) -g -O2 -Wall -ansi -D_CON_ $(CON) -o $(SPELL) -lsocket -lnsl
++ $(CC) $(CFLAGS) -Wall -ansi -D_CON_ $(CON) -o $(SPELL) -lsocket -lnsl
+
+ install: con-install