summaryrefslogtreecommitdiff
path: root/emulators/hercules
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2013-10-24 12:20:46 +0000
committerryoon <ryoon@pkgsrc.org>2013-10-24 12:20:46 +0000
commit53fb973f8548d527d797df8cf7cd171b18339cba (patch)
treef7eba27032844029f5363cca200925b83d820aa1 /emulators/hercules
parentd3579b91f103daab67d987d945305859dabe0479 (diff)
downloadpkgsrc-53fb973f8548d527d797df8cf7cd171b18339cba.tar.gz
Remove obsolete patch and regen distinfo.
checksum for tar ball is fixed.
Diffstat (limited to 'emulators/hercules')
-rw-r--r--emulators/hercules/distinfo9
-rw-r--r--emulators/hercules/patches/patch-tapedev.h66
2 files changed, 4 insertions, 71 deletions
diff --git a/emulators/hercules/distinfo b/emulators/hercules/distinfo
index d02a0595d38..b543916910a 100644
--- a/emulators/hercules/distinfo
+++ b/emulators/hercules/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.15 2013/10/24 12:01:46 ryoon Exp $
+$NetBSD: distinfo,v 1.16 2013/10/24 12:20:46 ryoon Exp $
-SHA1 (hercules-3.07.tar.gz) = d0b2e543dd66ee43576e5a5faff8f4cc061cffb4
-RMD160 (hercules-3.07.tar.gz) = 241344a3242a1dacc5276dd61b7fa4c92a270f71
-Size (hercules-3.07.tar.gz) = 2701835 bytes
+SHA1 (hercules-3.09.tar.gz) = 5cbe89ec214de00b90e3077c27db636a7d2607f5
+RMD160 (hercules-3.09.tar.gz) = 88f546f374787a1084467e91c616ec46e8ca7e5d
+Size (hercules-3.09.tar.gz) = 2567052 bytes
SHA1 (patch-Makefile.in) = 42eed4f193fc07732ca145b019af2604c8a2e8e0
SHA1 (patch-autoconf_libtool.m4) = 713bc12bfd176e908fc01b401ee0163660f20da8
SHA1 (patch-configure.ac) = 655e738191adcc79d509592c06089305ae743024
@@ -14,4 +14,3 @@ SHA1 (patch-hstructs.h) = 040561caac5fa52db26c9dad064ef6a41a23e0d2
SHA1 (patch-htypes.h) = a3d53bd1d1c7633993b39e34b7c091d036a01816
SHA1 (patch-scsitape.c) = 13bd1172b5d688ee56c473a1236894d7c5961c71
SHA1 (patch-tapecopy.c) = c2ef850430f37ae7151985cd7881e6861b5dc538
-SHA1 (patch-tapedev.h) = f58aada65a902fa90def655bc78151c8045d3f9d
diff --git a/emulators/hercules/patches/patch-tapedev.h b/emulators/hercules/patches/patch-tapedev.h
deleted file mode 100644
index 1e61e28287e..00000000000
--- a/emulators/hercules/patches/patch-tapedev.h
+++ /dev/null
@@ -1,66 +0,0 @@
-$NetBSD: patch-tapedev.h,v 1.1 2011/05/01 23:28:59 ryoon Exp $
-
---- tapedev.h.orig 2010-01-08 22:56:27.000000000 +0000
-+++ tapedev.h
-@@ -535,4 +535,61 @@ extern int readhdr_omaheaders (DEVBLK *
- /*-------------------------------------------------------------------*/
- // (see SCSITAPE.H)
-
-+#if defined(BSD) && BSD >= 199306
-+/*-------------------------------------------------------------------*/
-+/* Support for BSD tape */
-+/*-------------------------------------------------------------------*/
-+struct mt_tape_info {
-+ BYTE t_type;
-+ const char *t_name;
-+};
-+
-+#define MT_TAPE_INFO \
-+{ \
-+ {MT_ISUNKNOWN, "Unknown type of tape device"}, \
-+ {MT_ISQIC02, "Generic QIC-02 tape streamer"} \
-+}
-+
-+/* Generic Mag Tape (device independent) status macros for examining
-+ * mt_gstat -- HP-UX compatible.
-+ * There is room for more generic status bits here, but I don't
-+ * know which of them are reserved. At least three or so should
-+ * be added to make this really useful.
-+ */
-+#define GMT_EOF(x) ((x) & 0x80000000)
-+#define GMT_BOT(x) ((x) & 0x40000000)
-+#define GMT_EOT(x) ((x) & 0x20000000)
-+#define GMT_SM(x) ((x) & 0x10000000) /* DDS setmark */
-+#define GMT_EOD(x) ((x) & 0x08000000) /* DDS EOD */
-+#define GMT_WR_PROT(x) ((x) & 0x04000000)
-+/* #define GMT_ ? ((x) & 0x02000000) */
-+#define GMT_ONLINE(x) ((x) & 0x01000000)
-+#define GMT_D_6250(x) ((x) & 0x00800000)
-+#define GMT_D_1600(x) ((x) & 0x00400000)
-+#define GMT_D_800(x) ((x) & 0x00200000)
-+/* #define GMT_ ? ((x) & 0x00100000) */
-+/* #define GMT_ ? ((x) & 0x00080000) */
-+#define GMT_DR_OPEN(x) ((x) & 0x00040000) /* door open (no tape) */
-+/* #define GMT_ ? ((x) & 0x00020000) */
-+#define GMT_IM_REP_EN(x) ((x) & 0x00010000) /* immediate report mode */
-+/* 16 generic status bits unused */
-+/* SCSI-tape specific definitions */
-+
-+/* Bitfield shifts in the status */
-+#define MT_ST_BLKSIZE_SHIFT 0
-+#define MT_ST_BLKSIZE_MASK 0xffffff
-+#define MT_ST_DENSITY_SHIFT 24
-+#define MT_ST_DENSITY_MASK 0xff000000
-+
-+#define MTSETBLK 20 /* set block length (SCSI) */
-+
-+#define MT_ISUNKNOWN 0x01
-+#define MT_ISQIC02 0x02
-+
-+#define MTIOCPOS MTNOP /* do nothing, status only */
-+#define mtpos mtget /* generic status struct, including mt_blkno */
-+#define MTSEEK MTFSR /* forward seek record; probably wrong */
-+
-+#endif /* BSD */
-+
- #endif // __TAPEDEV_H__