diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-09-20 17:15:59 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-09-20 17:15:59 +0000 |
commit | b07c247ec4798686302e651467714bd9518e5a77 (patch) | |
tree | 302ea495bd08391f62be877fd6331e3f5850cd5f /security/zebedee | |
parent | 2baf2a3ae96120bff93db304ee42253062b859db (diff) | |
download | ports-b07c247ec4798686302e651467714bd9518e5a77.tar.gz ports-b07c247ec4798686302e651467714bd9518e5a77.zip |
Notes
Diffstat (limited to 'security/zebedee')
-rw-r--r-- | security/zebedee/Makefile | 2 | ||||
-rw-r--r-- | security/zebedee/distinfo | 4 | ||||
-rw-r--r-- | security/zebedee/files/patch-aa | 29 |
3 files changed, 18 insertions, 17 deletions
diff --git a/security/zebedee/Makefile b/security/zebedee/Makefile index 2e7a9acfacbf..83f81246a22b 100644 --- a/security/zebedee/Makefile +++ b/security/zebedee/Makefile @@ -6,7 +6,7 @@ # PORTNAME= zebedee -PORTVERSION= 2.5.2 +PORTVERSION= 2.5.3 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/security/zebedee/distinfo b/security/zebedee/distinfo index 9d17fb7ba696..212adeee4535 100644 --- a/security/zebedee/distinfo +++ b/security/zebedee/distinfo @@ -1,2 +1,2 @@ -MD5 (zebedee-2.5.2.tar.gz) = 60b3675c792fc65ef79aeb9a6ea40789 -SIZE (zebedee-2.5.2.tar.gz) = 175463 +MD5 (zebedee-2.5.3.tar.gz) = 8a25832efb563578e66a7aa4195bc8f3 +SIZE (zebedee-2.5.3.tar.gz) = 176088 diff --git a/security/zebedee/files/patch-aa b/security/zebedee/files/patch-aa index b93c06e9d52a..047e600ad712 100644 --- a/security/zebedee/files/patch-aa +++ b/security/zebedee/files/patch-aa @@ -1,15 +1,15 @@ ---- Makefile.orig Tue Sep 23 14:37:56 2003 -+++ Makefile Mon Dec 15 19:56:14 2003 +--- Makefile.orig Tue Sep 6 07:59:53 2005 ++++ Makefile Thu Sep 15 07:34:55 2005 @@ -5,7 +5,7 @@ - ZBD_VERSION = 2.5.2 + ZBD_VERSION = 2.5.3 -OS = +OS = freebsd ### ### Locations of tools, libraries and installation directories. -@@ -14,12 +14,10 @@ +@@ -14,13 +14,11 @@ # Choose your C compiler @@ -17,13 +17,14 @@ - CC_win32 = gcc -mno-cygwin CC_linux = gcc -pthread + CC_linux64 = $(CC_linux) -m64 CC_solaris = gcc -CC_freebsd = gcc -pthread +CC_freebsd ?= gcc CC_tru64 = cc CC_irix = cc -n32 -woff 1110 CC_hpux = cc -Ae +DAportable -@@ -30,7 +28,7 @@ +@@ -31,7 +29,7 @@ # Optimise/debug compilation #OPTIM = -Wall -g @@ -32,7 +33,7 @@ # Location of gmp include and library # -@@ -45,25 +43,26 @@ +@@ -46,25 +44,26 @@ # BFINC = /usr/include/openssl # BFLIB = -lcrypto @@ -43,16 +44,16 @@ # Location of zlib include and library --ZINC = -I../zlib-1.1.4 --ZLIB = ../zlib-1.1.4/libz.a -+ZINC = +-ZINC = -I../zlib-1.2.3 +-ZLIB = ../zlib-1.2.3/libz.a ++ZINC = +ZLIB = -lz # Location of bzlib include and library # Set these empty if you don't want bzib2 support --BZINC = -I../bzip2-1.0.1 --BZLIB = ../bzip2-1.0.1/libbz2.a +-BZINC = -I../bzip2-1.0.3 +-BZLIB = ../bzip2-1.0.3/libbz2.a +BZINC = -I$(LOCALBASE)/include +BZLIB = -L$(LOCALBASE)/lib -lbz2 @@ -65,7 +66,7 @@ PERL = $(PERL_$(OS)) BAT_win32 = .bat -@@ -182,7 +181,8 @@ +@@ -186,7 +185,8 @@ #### You REALLY shouldn't have to modify anything beyond here ... #### @@ -75,8 +76,8 @@ LIBS = $(GMPLIB) $(BFLIB) $(ZLIB) $(BZLIB) $(OSLIBS) -@@ -202,7 +202,7 @@ - @ if test -z "$(OS)"; then echo "Use '$(MAKE) OS=xxx' where xxx is win32, linux, solaris, freebsd, tru64, irix, hpux, macosx or bsdi"; exit 1; fi +@@ -206,7 +206,7 @@ + @ if test -z "$(OS)"; then echo "Use '$(MAKE) OS=xxx' where xxx is win32, linux, linux64, solaris, freebsd, tru64, irix, hpux, macosx or bsdi"; exit 1; fi zebedee$(EXE) : $(OBJS) - $(CC) $(CFLAGS) -o zebedee$(EXE) $(OBJS) $(LIBS) |