diff options
author | Rene Ladan <rene@FreeBSD.org> | 2014-03-24 19:51:54 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2014-03-24 19:51:54 +0000 |
commit | 0a26f843518b39bdd0a2ccbc09adea04bdb5c85c (patch) | |
tree | 0d487a7713c017c35f040aea6f093d8a2224aee0 /emulators | |
parent | 611cc4f4c601604022ec64afad99aff4b4d4f057 (diff) |
Notes
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/Makefile | 1 | ||||
-rw-r--r-- | emulators/hfs/Makefile | 56 | ||||
-rw-r--r-- | emulators/hfs/distinfo | 2 | ||||
-rw-r--r-- | emulators/hfs/files/patch-a | 25 | ||||
-rw-r--r-- | emulators/hfs/pkg-descr | 11 |
5 files changed, 0 insertions, 95 deletions
diff --git a/emulators/Makefile b/emulators/Makefile index e087fc0336d3..b68b6a4ce1f7 100644 --- a/emulators/Makefile +++ b/emulators/Makefile @@ -53,7 +53,6 @@ SUBDIR += gxmame SUBDIR += hatari SUBDIR += hercules - SUBDIR += hfs SUBDIR += higan SUBDIR += hugo SUBDIR += i386-wine diff --git a/emulators/hfs/Makefile b/emulators/hfs/Makefile deleted file mode 100644 index ecce609f48c6..000000000000 --- a/emulators/hfs/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# Created by: Jean-Marc Zucconi <jmz@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= hfs -DISTVERSION= 0_37 -PORTREVISION= 1 -CATEGORIES= emulators -MASTER_SITES= LOCAL/jmz -DISTNAME= ${PORTNAME}${DISTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Read Macintosh HFS floppy disks, hard drives, and CD-ROMs - -LICENSE= GPLv2 - -CONFLICTS= hfsutils-[0-9]* - -DEPRECATED= No upstream, no public distfiles; consider using 'sysutils/hfsutils' -EXPIRATION_DATE=2014-03-23 - -USE_GMAKE= yes -MAKE_ARGS= CCPLUSPLUS="${CXX} -c" LD="${CXX}" DEBUG="${CFLAGS}" \ - INSTALLPATH="${PREFIX}" MANINSTALLDIR="${MANPREFIX}/man/man1" - -MAN1= ${PORTNAME}.1 -PLIST_FILES= bin/${PORTNAME} -PORTDOCS= README - -OPTIONS_DEFINE= ALIASES DOCS -ALIASES_DESC= Install subcommand symbolic links - -NO_STAGE= yes -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MALIASES} -ALIASES= bin/hcat bin/hcd bin/hdir bin/hls bin/hpwd bin/hread -PLIST_FILES+= ${ALIASES} -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/.* ||' ${WRKSRC}/Makefile - @${REINPLACE_CMD} -e 's|Volume::Enumerate|Enumerate|' \ - ${WRKSRC}/volume.h - -post-install: -.if ${PORT_OPTIONS:MALIASES} -. for l in ${ALIASES} - ${LN} -sf ${PORTNAME} ${PREFIX}/${l} -. endfor -.endif -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR} -.endif - -.include <bsd.port.mk> diff --git a/emulators/hfs/distinfo b/emulators/hfs/distinfo deleted file mode 100644 index 8e403fd49849..000000000000 --- a/emulators/hfs/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (hfs0_37.tar.gz) = c813219041916cdaa5c5918c7f87e8ca5e279ac1f52cb90db9b89a354e65d1b8 -SIZE (hfs0_37.tar.gz) = 56987 diff --git a/emulators/hfs/files/patch-a b/emulators/hfs/files/patch-a deleted file mode 100644 index f4ac8f268cd8..000000000000 --- a/emulators/hfs/files/patch-a +++ /dev/null @@ -1,25 +0,0 @@ ---- catalog.cxx~ Wed Oct 26 14:53:09 1994 -+++ catalog.cxx Sat Jan 1 17:32:13 2000 -@@ -613,7 +613,8 @@ - - // remainder are only valid if item is a file - if (isfile) { -- for (int i = 0; i < 4;i++) -+ int i; -+ for (i = 0; i < 4;i++) - creator[i] = fb.creator[i]; - for (i = 0; i < 4;i++) - filetype[i] = fb.filetype[i]; ---- volume.cxx~ Wed Oct 26 14:53:09 1994 -+++ volume.cxx Sat Jan 1 17:33:36 2000 -@@ -521,8 +521,9 @@ - BOOL DeviceVolume::Read (ULONG logical_block, void * buffer) - - { -+ int i; - Cache * c = cache; -- for (int i = 0; i < CacheSize; i++, c++) { -+ for (i = 0; i < CacheSize; i++, c++) { - if (c->lastUsed != 0 && c->block == logical_block) { - memcpy(buffer, c->buffer, LogicalBlockSize); - c->lastUsed = countLRU++; diff --git a/emulators/hfs/pkg-descr b/emulators/hfs/pkg-descr deleted file mode 100644 index e87475ece8a3..000000000000 --- a/emulators/hfs/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -This port provides command line utility for accessing Macintosh HFS floppy -disks, hard drives, and CD-ROMs. The following functions are available: - - - Display a directory listing (ls, dir) - - Change directories (cd) - - Display the name of the current directory (pwd) - - Copy an HFS file into a local file (read) - - Display the contents of an HFS file (cat) - - Display the partition table on a Macintosh volume - -There is no HFS+ volumes support available. |