aboutsummaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1994-11-17 23:24:39 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1994-11-17 23:24:39 +0000
commitac7284c0d361492ff4427a0cde053a5c8b841311 (patch)
treedf49ab2983c14ff451683d1bc4edd23e6400105e /emulators
parent4f6f6eb434d522cd0c8d7025c3436e82052db186 (diff)
downloadports-ac7284c0d361492ff4427a0cde053a5c8b841311.tar.gz
ports-ac7284c0d361492ff4427a0cde053a5c8b841311.zip
tkhfs - a Tcl/Tk front end to the hfs program.
Notes
Notes: svn path=/head/; revision=408
Diffstat (limited to 'emulators')
-rw-r--r--emulators/tkhfs/Makefile5
-rw-r--r--emulators/tkhfs/pkg-comment1
-rw-r--r--emulators/tkhfs/pkg-descr3
-rw-r--r--emulators/tkhfs/pkg-plist6
-rw-r--r--emulators/tkhfs/scripts/configure12
5 files changed, 27 insertions, 0 deletions
diff --git a/emulators/tkhfs/Makefile b/emulators/tkhfs/Makefile
new file mode 100644
index 000000000000..67d7fc339472
--- /dev/null
+++ b/emulators/tkhfs/Makefile
@@ -0,0 +1,5 @@
+DISTNAME= tkhfs
+MASTER_SITES= ftp://ftp.obs-besancon.fr/pub/outgoing/
+DEPENDS= utils/hfs x11/tk
+
+.include <bsd.port.mk>
diff --git a/emulators/tkhfs/pkg-comment b/emulators/tkhfs/pkg-comment
new file mode 100644
index 000000000000..9a54d0c9bff6
--- /dev/null
+++ b/emulators/tkhfs/pkg-comment
@@ -0,0 +1 @@
+tkhfs - a Tcl/Tk front end to the hfs program.
diff --git a/emulators/tkhfs/pkg-descr b/emulators/tkhfs/pkg-descr
new file mode 100644
index 000000000000..7f6040b3ea99
--- /dev/null
+++ b/emulators/tkhfs/pkg-descr
@@ -0,0 +1,3 @@
+tkhfs is a graphical Tcl/Tk front end to hfs. It displays the mac files
+in a selector. You can walk through folders, copy or display files or images
+with a double click on a file name.
diff --git a/emulators/tkhfs/pkg-plist b/emulators/tkhfs/pkg-plist
new file mode 100644
index 000000000000..f857639c2dcb
--- /dev/null
+++ b/emulators/tkhfs/pkg-plist
@@ -0,0 +1,6 @@
+@cd /usr/local
+@owner bin
+@mode 755
+bin/tkhfs
+@mode 644
+lib/tcl/FSBox.tcl
diff --git a/emulators/tkhfs/scripts/configure b/emulators/tkhfs/scripts/configure
new file mode 100644
index 000000000000..3c55e51d1d06
--- /dev/null
+++ b/emulators/tkhfs/scripts/configure
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+cd $WRKSRC || exit 1;
+
+cat >> Makefile << END || exit 1;
+
+BINDIR = $PREFIX/bin
+HFSBIN = \$(BINDIR)/hfs
+WISH = \$(BINDIR)/wish
+END
+
+exit 0; \ No newline at end of file