diff options
author | taoka <taoka@FreeBSD.org> | 1999-04-27 11:24:45 +0800 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 1999-04-27 11:24:45 +0800 |
commit | e2c0c8327dab56a9ca1cdb4053e072cc80d2fd3f (patch) | |
tree | 144b573762e558f952aade504abe6f291abb3b42 /misc/tkrunit | |
parent | bc53a38376589aad7ec0db3f9a6f54035920bcba (diff) | |
download | freebsd-ports-gnome-e2c0c8327dab56a9ca1cdb4053e072cc80d2fd3f.tar.gz freebsd-ports-gnome-e2c0c8327dab56a9ca1cdb4053e072cc80d2fd3f.tar.zst freebsd-ports-gnome-e2c0c8327dab56a9ca1cdb4053e072cc80d2fd3f.zip |
GUI app launcher with completion and history
PR: 9939
Submitted by: stephen farrell <sfarrell@healthquiz.com>
Diffstat (limited to 'misc/tkrunit')
-rw-r--r-- | misc/tkrunit/Makefile | 36 | ||||
-rw-r--r-- | misc/tkrunit/distinfo | 1 | ||||
-rw-r--r-- | misc/tkrunit/files/patch-aa | 10 | ||||
-rw-r--r-- | misc/tkrunit/pkg-comment | 1 | ||||
-rw-r--r-- | misc/tkrunit/pkg-descr | 6 | ||||
-rw-r--r-- | misc/tkrunit/pkg-plist | 3 |
6 files changed, 57 insertions, 0 deletions
diff --git a/misc/tkrunit/Makefile b/misc/tkrunit/Makefile new file mode 100644 index 000000000000..7c16ad054082 --- /dev/null +++ b/misc/tkrunit/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: tkrunnit +# Version required: 0.94.1 +# Date created: 6 February, 1999 +# Whom: Stephen Farrell <steve@farrell.org> +# +# $Id$ +# + +DISTNAME= tkRunIt-0941 +PKGNAME= tkRunIt-0.94.1 +CATEGORIES= misc +MASTER_SITES= http://www.cs.columbia.edu/~etgold/software/tkRunIt/ + +MAINTAINER= steve@farrell.org + +RUN_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 + +NO_BUILD= yes + +post-extract: + @(cd ${WRKDIR} ; ${MV} tkRunIt ${DISTNAME}) + +do-install: + @(cd ${WRKSRC} ; ${INSTALL_SCRIPT} runit.tcl ${PREFIX}/bin) + +post-install: + @${ECHO} " " + @${ECHO} "-------------------------------------------------------------------" + @${ECHO} "===> Installing runitrc.sample in ${PREFIX}/share/examples/tkrunit" + @${ECHO} "===> Copy runitrc.sample to ~/.runitrc and modify if you wish" + @${ECHO} "-------------------------------------------------------------------" + @${ECHO} " " + @${MKDIR} ${PREFIX}/share/examples/tkrunit && chmod a+rx ${PREFIX}/share/examples/tkrunit + @${INSTALL_DATA} ${WRKSRC}/runitrc.sample ${PREFIX}/share/examples/tkrunit + +.include <bsd.port.mk> diff --git a/misc/tkrunit/distinfo b/misc/tkrunit/distinfo new file mode 100644 index 000000000000..196d782a13d1 --- /dev/null +++ b/misc/tkrunit/distinfo @@ -0,0 +1 @@ +MD5 (tkRunIt-0941.tar.gz) = 350ed155295f8ae81519c2215aadc72c diff --git a/misc/tkrunit/files/patch-aa b/misc/tkrunit/files/patch-aa new file mode 100644 index 000000000000..538125555eee --- /dev/null +++ b/misc/tkrunit/files/patch-aa @@ -0,0 +1,10 @@ +--- runit.tcl.bak Tue Apr 27 11:48:06 1999 ++++ runit.tcl Tue Apr 27 11:48:06 1999 +@@ -1,6 +1,6 @@ + #!/bin/sh + # the next line restarts using wish \ +- exec wish "$0" "$@" ++ exec wish8.0 "$0" "$@" + + #!/usr/local/bin/wish + ## runit (tkRunIt) 12/4/98 diff --git a/misc/tkrunit/pkg-comment b/misc/tkrunit/pkg-comment new file mode 100644 index 000000000000..9ef8b1348d2b --- /dev/null +++ b/misc/tkrunit/pkg-comment @@ -0,0 +1 @@ +GUI app launcher with completion and history diff --git a/misc/tkrunit/pkg-descr b/misc/tkrunit/pkg-descr new file mode 100644 index 000000000000..613eb0aaf865 --- /dev/null +++ b/misc/tkrunit/pkg-descr @@ -0,0 +1,6 @@ +tkRunIt is a run dialog box for X which allows you to execute +commandline without using an xterm. tkRunIt was inspired by Xrun +but is designed to be completely navigable from the keyboard and +to allow extreme customizablility as I often find that personal +workspace tools/shortcuts are seldom workflow compatible across +users. diff --git a/misc/tkrunit/pkg-plist b/misc/tkrunit/pkg-plist new file mode 100644 index 000000000000..e0ca87223879 --- /dev/null +++ b/misc/tkrunit/pkg-plist @@ -0,0 +1,3 @@ +bin/runit.tcl +share/examples/tkrunit/runitrc.sample +@dirrm share/examples/tkrunit |