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
Responsible Changed From-To: freebsd-ports-bugs->sumikawa Over to maintainer
State Changed From-To: open->closed Commited, thanks.