diff options
-rw-r--r-- | security/dazuko/Makefile | 6 | ||||
-rw-r--r-- | security/dazuko/distinfo | 5 | ||||
-rw-r--r-- | security/dazuko/files/pkg-message.in | 14 | ||||
-rw-r--r-- | security/dazuko/pkg-deinstall | 4 | ||||
-rw-r--r-- | security/dazuko/pkg-install | 2 |
5 files changed, 8 insertions, 23 deletions
diff --git a/security/dazuko/Makefile b/security/dazuko/Makefile index 5edbb0be794d..6d9d437029ff 100644 --- a/security/dazuko/Makefile +++ b/security/dazuko/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= dazuko -PORTVERSION= 2.3.7 +PORTVERSION= 2.3.9 CATEGORIES= security MASTER_SITES= http://dazuko.dnsalias.org/files/ @@ -19,10 +19,6 @@ OPTIONS= EXAMPLEC "Install C example programs" on .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 800014 -BROKEN= does not build -.endif - .if defined(WITH_EXAMPLEC) PLIST_FILES= %%EXAMPLESDIR%%/example %%EXAMPLESDIR%%/example_mt PLIST_DIRS= %%EXAMPLESDIR%% diff --git a/security/dazuko/distinfo b/security/dazuko/distinfo index d9020fa081df..d5e2e7853871 100644 --- a/security/dazuko/distinfo +++ b/security/dazuko/distinfo @@ -1,3 +1,2 @@ -MD5 (dazuko-2.3.7.tar.gz) = 5b889051cfc55fea86eea1d4fe5ca65a -SHA256 (dazuko-2.3.7.tar.gz) = d0dd50451482a89c9e975fc5e7f22a2d4af1687b7be4294f23529b8acaaab249 -SIZE (dazuko-2.3.7.tar.gz) = 198841 +SHA256 (dazuko-2.3.9.tar.gz) = c66e0c7e4eda07fcb47bdbd55b782ece68cb7494fcd91171876bafcaed230d96 +SIZE (dazuko-2.3.9.tar.gz) = 207609 diff --git a/security/dazuko/files/pkg-message.in b/security/dazuko/files/pkg-message.in index 319bce6ee625..0e4cc60d48a9 100644 --- a/security/dazuko/files/pkg-message.in +++ b/security/dazuko/files/pkg-message.in @@ -1,21 +1,11 @@ ################################################################################ -1) Create device /dev/dazuko - - * FreeBSD 4.x - - # mknod /dev/dazuko c 33 0 - - * FreeBSD >= 5.x - - It's not neccesary on modern FreeBSD systems - -2) If you selected WITH_EXAMPLEC, you can test the module using files from: +1) If you selected WITH_EXAMPLEC, you can test the module using files from: %%EXAMPLESDIR%%/example %%EXAMPLESDIR%%/example_mt -3) Do not load the module using /boot/loader.conf. It generates a page fault due +2) Do not load the module using /boot/loader.conf. It generates a page fault due to a possible dazuko bug. You could use /etc/rc.local for loading the module. For example, add the diff --git a/security/dazuko/pkg-deinstall b/security/dazuko/pkg-deinstall index ca77a9d0b971..e2ccccd2ea1e 100644 --- a/security/dazuko/pkg-deinstall +++ b/security/dazuko/pkg-deinstall @@ -18,9 +18,9 @@ if [ ! "$2" = "POST-DEINSTALL" ]; then fi if [ -f /boot/loader.conf ]; then - cat /boot/loader.conf | grep ${MODULENAME} > /dev/null 2>&1; RESULT=$? + cat /etc/rc.local | grep ${MODULENAME} > /dev/null 2>&1; RESULT=$? if [ ${RESULT} -eq 0 ]; then - sed -i '' -e "/^${MODULENAME}_load.*/d" /boot/loader.conf + sed -i '' -e "/${MODULENAME}/d" /etc/rc.local fi fi fi diff --git a/security/dazuko/pkg-install b/security/dazuko/pkg-install index df2c77614e16..d15ecad43dab 100644 --- a/security/dazuko/pkg-install +++ b/security/dazuko/pkg-install @@ -16,7 +16,7 @@ echo kldload ${MODULENAME} fi -echo -n "Do you want load ${MODULENAME}.ko on boot time? [ y/n ]: " +echo -n "Do you want load ${MODULENAME}.ko in /etc/rc.local file? [ y/n ]: " read BOOTMOD echo |