diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1994-11-17 23:24:39 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1994-11-17 23:24:39 +0000 |
commit | ac7284c0d361492ff4427a0cde053a5c8b841311 (patch) | |
tree | df49ab2983c14ff451683d1bc4edd23e6400105e /emulators/tkhfs | |
parent | 4f6f6eb434d522cd0c8d7025c3436e82052db186 (diff) | |
download | ports-ac7284c0d361492ff4427a0cde053a5c8b841311.tar.gz ports-ac7284c0d361492ff4427a0cde053a5c8b841311.zip |
Notes
Diffstat (limited to 'emulators/tkhfs')
-rw-r--r-- | emulators/tkhfs/Makefile | 5 | ||||
-rw-r--r-- | emulators/tkhfs/pkg-comment | 1 | ||||
-rw-r--r-- | emulators/tkhfs/pkg-descr | 3 | ||||
-rw-r--r-- | emulators/tkhfs/pkg-plist | 6 | ||||
-rw-r--r-- | emulators/tkhfs/scripts/configure | 12 |
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 |