summaryrefslogtreecommitdiff
path: root/security/zebedee
diff options
context:
space:
mode:
authorDaniel Baker <dbaker@FreeBSD.org>2001-02-11 17:25:09 +0000
committerDaniel Baker <dbaker@FreeBSD.org>2001-02-11 17:25:09 +0000
commit72da6d0feb08f0b03c5bb270576b71e9a393362b (patch)
tree47b85512bc6204b1c48b172806c86f6a59a6d140 /security/zebedee
parent- Though not broken as such, the way in which port docs was handled in (diff)
Update: 2.2.1
Submitted by: Greg Hewgill <greg@hewgill.com>
Notes
Notes: svn path=/head/; revision=38216
Diffstat (limited to 'security/zebedee')
-rw-r--r--security/zebedee/Makefile2
-rw-r--r--security/zebedee/distinfo2
-rw-r--r--security/zebedee/files/patch-aa52
3 files changed, 17 insertions, 39 deletions
diff --git a/security/zebedee/Makefile b/security/zebedee/Makefile
index a6e5b6be246f..0997a4987937 100644
--- a/security/zebedee/Makefile
+++ b/security/zebedee/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= zebedee
-PORTVERSION= 2.0.1
+PORTVERSION= 2.2.1
CATEGORIES= security
MASTER_SITES= http://www.winton.org.uk/zebedee/ \
http://www.hewgill.com/zebedee/
diff --git a/security/zebedee/distinfo b/security/zebedee/distinfo
index ea35a129ea91..2e38ac09d896 100644
--- a/security/zebedee/distinfo
+++ b/security/zebedee/distinfo
@@ -1 +1 @@
-MD5 (zebedee-2.0.1.tar.gz) = 7cafb5ea0d4bc7def12fed445eeebad6
+MD5 (zebedee-2.2.1.tar.gz) = bfd0f9908930d9253236a687656b052d
diff --git a/security/zebedee/files/patch-aa b/security/zebedee/files/patch-aa
index c9e7fe144d23..8db659bde77a 100644
--- a/security/zebedee/files/patch-aa
+++ b/security/zebedee/files/patch-aa
@@ -1,35 +1,29 @@
---- Makefile.orig Sun Aug 13 11:06:36 2000
-+++ Makefile Thu Jan 25 04:08:11 2001
+--- Makefile.orig Tue Feb 6 15:43:58 2001
++++ Makefile Tue Feb 6 15:44:36 2001
@@ -3,7 +3,7 @@
#
- # $Id: Makefile,v 1.13 2000/06/05 21:34:27 nwinton Exp nwinton $
+ # $Id: Makefile,v 1.19 2000/10/18 20:55:53 nwinton Exp nwinton $
--OS =
+-OS =
+OS = freebsd
###
### Locations of tools, libraries and installation directories.
-@@ -17,12 +17,13 @@
- CC_win32 = gcc -mno-cygwin
- CC_linux = gcc
- CC_solaris = gcc
-+CC_freebsd = cc
- CC = $(CC_$(OS))
-
+@@ -24,7 +24,7 @@
# Optimise/debug compilation
#OPTIM = -Wall -g
--OPTIM = -Wall -O
-+OPTIM = -Wall
+-OPTIM = -O3
++OPTIM =
# Location of gmp include and library
#
-@@ -34,19 +35,19 @@
+@@ -36,19 +36,19 @@
# Location of Blowfish include and library
--BFINC = -I../blowfish
--BFLIB = ../blowfish/libblowfish.a
+-BFINC = -I../blowfish-0.9.5a
+-BFLIB = ../blowfish-0.9.5a/libblowfish.a
+BFINC = -I${OPENSSLINC} -I${OPENSSLINC}/openssl
+BFLIB = ${OPENSSLLIB}/libcrypto.a
@@ -37,41 +31,25 @@
-ZINC = -I../zlib-1.1.3
-ZLIB = ../zlib-1.1.3/libz.a
-+ZINC =
++ZINC =
+ZLIB = -lz
# Location of bzlib include and library
# Set these empty if you don't want bzib2 support
--BZINC = -I../bzip2-0.9.5d
--BZLIB = ../bzip2-0.9.5d/libbz2.a
+-BZINC = -I../bzip2-1.0.1
+-BZLIB = ../bzip2-1.0.1/libbz2.a
+BZINC = -I${LOCALBASE}/include
+BZLIB = ${LOCALBASE}/lib/libbz2.a
#
# Tools needed for Perl "POD"-format documentation conversion.
-@@ -94,6 +95,7 @@
- DEFINES_win32 = # Win32
- DEFINES_linux = -D_REENTRANT -DHAVE_PTHREADS # Linux
- DEFINES_solaris = -D_REENTRANT -DHAVE_PTHREADS # Solaris
-+DEFINES_freebsd = -D_REENTRANT # FreeBSD
- DEFINES = $(DEFINES_$(OS))
-
- # Suffix for executables
-@@ -106,6 +108,7 @@
- OSLIBS_win32 = -lwsock32 -lwinmm # Win32
- OSLIBS_linux = -lpthread # Linux
- OSLIBS_solaris = -lsocket -lnsl -lthread # Solaris
-+OSLIBS_freebsd = # FreeBSD
- OSLIBS = $(OSLIBS_$(OS))
-
- # Supplementary object files (Win32 ONLY)
-@@ -120,7 +123,8 @@
+@@ -133,7 +133,8 @@
#### You REALLY shouldn't have to modify anything beyond here ...
####
-CFLAGS = $(OPTIM) $(DEFINES) -I. $(GMPINC) $(BFINC) $(ZINC) $(BZINC)
-+CFLAGS ?= -O
++CFLAGS ?= -O3
+CFLAGS += $(OPTIM) $(DEFINES) -I. $(GMPINC) $(BFINC) $(ZINC) $(BZINC)
LIBS = $(GMPLIB) $(BFLIB) $(ZLIB) $(BZLIB) $(OSLIBS)