diff options
author | pat <pat@FreeBSD.org> | 2002-04-01 17:20:17 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-04-01 17:20:17 +0000 |
commit | 33e9e8f3d99ea8bead6f03600a7b71d87a9a8fe6 (patch) | |
tree | 91577da405159655dd01db363c21218740165748 /net/ipsorc | |
parent | cf319dd7f2c6b10314f7fb2e82c3202169ecdc1f (diff) | |
download | FreeBSD-ports-33e9e8f3d99ea8bead6f03600a7b71d87a9a8fe6.zip FreeBSD-ports-33e9e8f3d99ea8bead6f03600a7b71d87a9a8fe6.tar.gz |
- Update to 1.5
- Respect CFLAGS, CC
PR: 36617
Submitted by: maintainer
Diffstat (limited to 'net/ipsorc')
-rw-r--r-- | net/ipsorc/Makefile | 2 | ||||
-rw-r--r-- | net/ipsorc/distinfo | 2 | ||||
-rw-r--r-- | net/ipsorc/files/patch-aa | 32 |
3 files changed, 28 insertions, 8 deletions
diff --git a/net/ipsorc/Makefile b/net/ipsorc/Makefile index 3f53e84..24b6748 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 99355c5..7aac27b 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 a27a02d..7108ddc 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 |