1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

tkhfs - a Tcl/Tk front end to the hfs program.

This commit is contained in:
Jean-Marc Zucconi 1994-11-17 23:24:39 +00:00
parent 4f6f6eb434
commit ac7284c0d3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=408
5 changed files with 27 additions and 0 deletions

5
emulators/tkhfs/Makefile Normal file
View File

@ -0,0 +1,5 @@
DISTNAME= tkhfs
MASTER_SITES= ftp://ftp.obs-besancon.fr/pub/outgoing/
DEPENDS= utils/hfs x11/tk
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
tkhfs - a Tcl/Tk front end to the hfs program.

View File

@ -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.

View File

@ -0,0 +1,6 @@
@cd /usr/local
@owner bin
@mode 755
bin/tkhfs
@mode 644
lib/tcl/FSBox.tcl

12
emulators/tkhfs/scripts/configure vendored Normal file
View File

@ -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;