SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,29 @@
Index: utils/kamctl/kamdbctl.db_berkeley
--- utils/kamctl/kamdbctl.db_berkeley.orig
+++ utils/kamctl/kamdbctl.db_berkeley
@@ -35,6 +35,12 @@ if [ $ret -eq 0 ] ; then
DUMP_CMD="db_dump"
fi ;
+which db4_dump > /dev/null
+ret=$?
+if [ $ret -eq 0 ] ; then
+ DUMP_CMD="db4_dump"
+fi ;
+
which db4.4_dump > /dev/null
ret=$?
if [ $ret -eq 0 ] ; then
@@ -74,6 +80,12 @@ which db_load > /dev/null
ret=$?
if [ $ret -eq 0 ] ; then
LOAD_CMD="db_load"
+fi ;
+
+which db4_load > /dev/null
+ret=$?
+if [ $ret -eq 0 ] ; then
+ LOAD_CMD="db4_load"
fi ;
which db4.4_load > /dev/null