diff options
author | jmz <jmz@FreeBSD.org> | 1994-11-17 23:24:39 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1994-11-17 23:24:39 +0000 |
commit | d09170cf54d1bd76c0f72c0ed2f89a71cf5eacc4 (patch) | |
tree | 661a899da7bf2ba1c101ba699b865e2be74a2707 /emulators | |
parent | 4cc86398c9868828ac78ef328d2dbf7fcc3cfa92 (diff) | |
download | FreeBSD-ports-d09170cf54d1bd76c0f72c0ed2f89a71cf5eacc4.zip FreeBSD-ports-d09170cf54d1bd76c0f72c0ed2f89a71cf5eacc4.tar.gz |
tkhfs - a Tcl/Tk front end to the hfs program.
Diffstat (limited to 'emulators')
-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 0000000..67d7fc3 --- /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 0000000..9a54d0c --- /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 0000000..7f6040b --- /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 0000000..f857639 --- /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 0000000..3c55e51 --- /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 |