Bug 57106

Summary: racoon libipsec test b0rked
Product: Ports & Packages Reporter: Bjoern A. Zeeb <bzeeb+freebsdports>
Component: Individual Port(s)Assignee: Munechika Sumikawa <sumikawa>
Status: Closed FIXED    
Severity: Affects Only Me CC: bzeeb+freebsdports
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Bjoern A. Zeeb 2003-09-22 21:50:23 UTC
racoon port has the following test:

.if !exists(/usr/lib/libipsec.so.1)
BROKEN=		"You must upgrade the OS"
.endif

but

bz@noc:security/racoon> ls -l /usr/lib/libipsec.so*
lrwxr-xr-x    1 root     wheel          18 Sep 20 22:53 /usr/lib/libipsec.so -> /lib/libipsec.so.1
bz@noc:security/racoon> ls -l /lib/libipsec.so.1
-r--r--r--    1 root     wheel       22988 Sep 20 22:53 /lib/libipsec.so.1

Fix: unsure (don't know if /usr/lib/libipsec.so.1 ever existed)
but I would suggest:



-.if !exists(/usr/lib/libipsec.so.1)
+.if !exists(/usr/lib/libipsec.so.1) && !exists(/lib/libipsec.so.1)
 BROKEN=		"You must upgrade the OS"
.endif--ogy3URXgW0T5QeQaJwZ04sndCzJpfgbjKHLVsHTjO150plBs
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

--- Makefile.orig       Mon Sep 22 20:36:35 2003
+++ Makefile    Mon Sep 22 20:36:51 2003
@@ -13,7 +13,7 @@
 MAINTAINER=	sumikawa@FreeBSD.org
 COMMENT=	KAME racoon IKE daemon
How-To-Repeat: 	instal 5.1R and update to HEAD
Comment 1 Kirill Ponomarev freebsd_committer freebsd_triage 2003-09-22 22:00:55 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sumikawa

Over to maintainer
Comment 2 Munechika Sumikawa freebsd_committer freebsd_triage 2003-09-26 17:39:25 UTC
State Changed
From-To: open->closed

Commited, thanks.