summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorjoerg <joerg>2005-12-09 12:10:09 +0000
committerjoerg <joerg>2005-12-09 12:10:09 +0000
commit2c365fc1f443ef7a8285148d1ace7b1ee2e5d13b (patch)
tree98c49dc9a43b0b03af7604ee484112bc384b11b7 /emulators
parentf57cd71ab4d2e9b72bf64356b6a9b952bb6142ca (diff)
downloadpkgsrc-2c365fc1f443ef7a8285148d1ace7b1ee2e5d13b.tar.gz
Add DragonFly support.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/swarm/distinfo5
-rw-r--r--emulators/swarm/patches/patch-ad4
-rw-r--r--emulators/swarm/patches/patch-ak13
3 files changed, 18 insertions, 4 deletions
diff --git a/emulators/swarm/distinfo b/emulators/swarm/distinfo
index e72a0ffad4f..f8afc40ab1d 100644
--- a/emulators/swarm/distinfo
+++ b/emulators/swarm/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.8 2005/11/03 21:51:57 rillig Exp $
+$NetBSD: distinfo,v 1.9 2005/12/09 12:10:09 joerg Exp $
SHA1 (swarm-0.61.tar.gz) = 36ed52671f8be2cf8e799efd94a48b2919979d2c
RMD160 (swarm-0.61.tar.gz) = d8e15da178236a46761a65cd52809276df5f3511
@@ -6,10 +6,11 @@ Size (swarm-0.61.tar.gz) = 395061 bytes
SHA1 (patch-aa) = 65da2134c0d99930412e60fbb3e0f299d3982113
SHA1 (patch-ab) = 5a71a670297e4d8db2dd3c7c96d9528f878d13cb
SHA1 (patch-ac) = 20b0603e24178a6086531bd2f7eb0eb5fc0e99c3
-SHA1 (patch-ad) = bee100f2ed6311153f4286fc88c4a7dd98f3efb8
+SHA1 (patch-ad) = 4e660fcb3dae67d4519ad3df40e342707e983e96
SHA1 (patch-ae) = 08b8819ad53bb0a91c3ab7a56479b2f36faab754
SHA1 (patch-af) = 8228c591fd22ee8984d1f434940ad2cbbba41a22
SHA1 (patch-ag) = 4d3ca9cd45edc081b85019ec88135504b3e7b0a1
SHA1 (patch-ah) = 94d58bdd8d48e73f49ef06ac90eb0a9b0e1af6db
SHA1 (patch-ai) = 51b43a6b560566447d588623b19d3da6ab7b4ade
SHA1 (patch-aj) = 227b459e8201320679d3484daa163a5a5c579b17
+SHA1 (patch-ak) = b5fe118ed1da57ba528c3f3e86790ff33b7a2533
diff --git a/emulators/swarm/patches/patch-ad b/emulators/swarm/patches/patch-ad
index adc4e02cb46..88aaaf2559b 100644
--- a/emulators/swarm/patches/patch-ad
+++ b/emulators/swarm/patches/patch-ad
@@ -1,4 +1,4 @@
-$NetBSD: patch-ad,v 1.2 2005/11/03 21:51:57 rillig Exp $
+$NetBSD: patch-ad,v 1.3 2005/12/09 12:10:09 joerg Exp $
--- src/uartctrl.cpp 2003/08/14 08:54:51 1.1
+++ src/uartctrl.cpp 2003/08/14 09:15:14
@@ -6,7 +6,7 @@ $NetBSD: patch-ad,v 1.2 2005/11/03 21:51:57 rillig Exp $
//
int CUARTCtrl::GetPty()
{
-+#ifdef __NetBSD__
++#if defined(__NetBSD__) || defined(__DragonFly__)
+#include <sys/param.h>
+ // masterpty = fd of master pty
+ const char *letters = "pqrstuvwxyzPQRST";
diff --git a/emulators/swarm/patches/patch-ak b/emulators/swarm/patches/patch-ak
new file mode 100644
index 00000000000..ed63f82cb9f
--- /dev/null
+++ b/emulators/swarm/patches/patch-ak
@@ -0,0 +1,13 @@
+$NetBSD: patch-ak,v 1.1 2005/12/09 12:10:09 joerg Exp $
+
+--- bin/scripts/arch.orig 2005-12-09 11:57:36.000000000 +0000
++++ bin/scripts/arch
+@@ -183,7 +183,7 @@ Linux) case "$machine" in
+ kbin=$bin
+ k_version=$version;;
+
+-FreeBSD) case "$machine" in
++FreeBSD|DragonFly) case "$machine" in
+ i[3456]86) arch=ix86; machine=$arch; bin=${machine}_freebsd;;
+ *) echo 1>&2 "Unknown $system machine $machine"; exit 3;;
+ esac