diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-02-16 10:07:12 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-02-16 10:07:12 +0000 |
commit | 76283fd6bb9d4356069a84d7ae6ff1ba56c9cbea (patch) | |
tree | c48e080ace6ab4ec1fdf3dbea0f0a39bdfdfe558 /emulators | |
parent | - Added missing configure option for Shoutcast and Icecast support. (diff) |
LIBDSK is a library for accessing disks and disk image files.
It is intended for use in:
* Allows CPMTOOLS use of emulator .DSK images.
* Emulator tools - converting between real floppy disks and disk images,
as CPCTRANS / PCWTRANS do under DOS.
* Floppy controller emulation backend
* Data transfer from/to real CP/M systems via serial line.
LIBDSK has drivers for:
Raw files (including /dev/fdn), .DSK files (CPCEMU, JOYCE and other
Sinclair/Amstrad emulators), MYZ80 hard drive image, NanoWasp floppy image,
.CFI (Compressed Floppy Image, as created by FDCOPY.COM under DOS),
Linux floppy drive (supports CPC System and Data formats, which the standard
"Raw file" driver does not), Windows 3.x/95/98/ME/NT/2000 floppy drive,
DOS floppy drive (via the PC BIOS), CopyQM files (read-only),
TeleDisk files (read-only), APRIDISK image files,
rcpmfs - makes a Unix/Windows directory appear to be a CP/M disc image.
WWW: http://www.seasip.demon.co.uk/Unix/LibDsk/
PR: ports/120179
Submitted by: Sven Klose <pixel@hugbox.org>
Notes
Notes:
svn path=/head/; revision=207299
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/Makefile | 1 | ||||
-rw-r--r-- | emulators/libdsk/Makefile | 26 | ||||
-rw-r--r-- | emulators/libdsk/distinfo | 3 | ||||
-rw-r--r-- | emulators/libdsk/pkg-descr | 23 | ||||
-rw-r--r-- | emulators/libdsk/pkg-plist | 14 |
5 files changed, 67 insertions, 0 deletions
diff --git a/emulators/Makefile b/emulators/Makefile index 39cf455c194e..d42d761985fe 100644 --- a/emulators/Makefile +++ b/emulators/Makefile @@ -60,6 +60,7 @@ SUBDIR += klh10 SUBDIR += kqemu-kmod SUBDIR += lib765 + SUBDIR += libdsk SUBDIR += libspectrum SUBDIR += linux-ePSXe SUBDIR += linux-geepee32 diff --git a/emulators/libdsk/Makefile b/emulators/libdsk/Makefile new file mode 100644 index 000000000000..33df36c6908e --- /dev/null +++ b/emulators/libdsk/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: libdsk +# Date created: 31 January 2008 +# Whom: pixel +# +# $FreeBSD$ +# + +PORTNAME= libdsk +PORTVERSION= 1.2.1 +CATEGORIES= emulators devel +MASTER_SITES= http://www.seasip.info/Unix/LibDsk/ \ + http://www.hugbox.org/software/ports/ + +MAINTAINER= pixel@hugbox.org +COMMENT= Enables access to disks and disk images; also via serial line + +USE_AUTOTOOLS= libtool:15 +USE_LDCONFIG= yes + +MAN1= apriboot.1 dskdump.1 dskform.1 dskid.1 dskscan.1 dsktrans.1\ + dskutil.1 md3serial.1 +MAN5= libdskrc.5 + +NO_MANCOMPRESSED=yes + +.include <bsd.port.mk> diff --git a/emulators/libdsk/distinfo b/emulators/libdsk/distinfo new file mode 100644 index 000000000000..4abf25189b85 --- /dev/null +++ b/emulators/libdsk/distinfo @@ -0,0 +1,3 @@ +MD5 (libdsk-1.2.1.tar.gz) = 3ff178e8d6e5d45967ebbf7a162a7fcc +SHA256 (libdsk-1.2.1.tar.gz) = 73dccf8d2d8a291ca9ea74414bee71e848e7bbf816fe82bfc599d4f54936f832 +SIZE (libdsk-1.2.1.tar.gz) = 815146 diff --git a/emulators/libdsk/pkg-descr b/emulators/libdsk/pkg-descr new file mode 100644 index 000000000000..07e99b349de8 --- /dev/null +++ b/emulators/libdsk/pkg-descr @@ -0,0 +1,23 @@ +LIBDSK is a library for accessing disks and disk image files. + +It is intended for use in: + +* Allows CPMTOOLS use of emulator .DSK images. +* Emulator tools - converting between real floppy disks and disk images, + as CPCTRANS / PCWTRANS do under DOS. +* Floppy controller emulation backend +* Data transfer from/to real CP/M systems via serial line. + +LIBDSK has drivers for: + + Raw files (including /dev/fdn), .DSK files (CPCEMU, JOYCE and other + Sinclair/Amstrad emulators), MYZ80 hard drive image, NanoWasp floppy image, + .CFI (Compressed Floppy Image, as created by FDCOPY.COM under DOS), + Linux floppy drive (supports CPC System and Data formats, which the standard + "Raw file" driver does not), Windows 3.x/95/98/ME/NT/2000 floppy drive, + DOS floppy drive (via the PC BIOS), CopyQM files (read-only), + TeleDisk files (read-only), APRIDISK image files, + rcpmfs - makes a Unix/Windows directory appear to be a CP/M disc image. + +Author: John Elliott <jce@seasip.demon.co.uk> +WWW: http://www.seasip.demon.co.uk/Unix/LibDsk/ diff --git a/emulators/libdsk/pkg-plist b/emulators/libdsk/pkg-plist new file mode 100644 index 000000000000..80104b2081d8 --- /dev/null +++ b/emulators/libdsk/pkg-plist @@ -0,0 +1,14 @@ +@comment $FreeBSD$ +bin/apriboot +bin/dskdump +bin/dskform +bin/dskid +bin/dskscan +bin/dsktrans +bin/dskutil +bin/md3serial +include/libdsk.h +lib/libdsk.a +lib/libdsk.la +lib/libdsk.so +lib/libdsk.so.5 |