diff options
author | pav <pav@FreeBSD.org> | 2005-07-12 20:56:46 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-07-12 20:56:46 +0800 |
commit | c5872148a801a51128e75daad3d28258c035f7f5 (patch) | |
tree | 22a8809ca8f87c262da2cbaebb835fe7a878d399 /deskutils | |
parent | 84d45c06415d634d32c67a686dcbb236ce955118 (diff) | |
download | freebsd-ports-gnome-c5872148a801a51128e75daad3d28258c035f7f5.tar.gz freebsd-ports-gnome-c5872148a801a51128e75daad3d28258c035f7f5.tar.zst freebsd-ports-gnome-c5872148a801a51128e75daad3d28258c035f7f5.zip |
An application / program launcher for Motif/X much like the
Windows Run Dialog.
PR: ports/83281
Submitted by: Matthew Holder <sixxgate@hotmail.com>
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/Makefile | 1 | ||||
-rw-r--r-- | deskutils/mrundlg/Makefile | 22 | ||||
-rw-r--r-- | deskutils/mrundlg/distinfo | 2 | ||||
-rw-r--r-- | deskutils/mrundlg/files/patch-mrundlg.c | 12 | ||||
-rw-r--r-- | deskutils/mrundlg/pkg-descr | 7 | ||||
-rw-r--r-- | deskutils/mrundlg/pkg-plist | 2 |
6 files changed, 46 insertions, 0 deletions
diff --git a/deskutils/Makefile b/deskutils/Makefile index 75a09eaebcd4..bdc669abc6d3 100644 --- a/deskutils/Makefile +++ b/deskutils/Makefile @@ -104,6 +104,7 @@ SUBDIR += mhc-xemacs21-mule SUBDIR += mnemo SUBDIR += moregroupware + SUBDIR += mrundlg SUBDIR += multi-backgrounds-daemon SUBDIR += multisync SUBDIR += multisync-backup diff --git a/deskutils/mrundlg/Makefile b/deskutils/mrundlg/Makefile new file mode 100644 index 000000000000..ff1f1e8b55cd --- /dev/null +++ b/deskutils/mrundlg/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: mrundlg +# Date created: 12 July 2005 +# Whom: Matthew Holder <sixxgate@hotmail.com> +# +# $FreeBSD$ +# + +PORTNAME= mrundlg +PORTVERSION= 1.0 +CATEGORIES= deskutils +MASTER_SITES= http://matt.sixxgate.com/files/ + +MAINTAINER= sixxgate@hotmail.com +COMMENT= An application / program launcher for Motif + +USE_MOTIF= yes +USE_BZIP2= yes +USE_IMAKE= yes +MAN1= mrundlg.1 +MANCOMPRESSED= yes + +.include <bsd.port.mk> diff --git a/deskutils/mrundlg/distinfo b/deskutils/mrundlg/distinfo new file mode 100644 index 000000000000..e062f5c3aa7e --- /dev/null +++ b/deskutils/mrundlg/distinfo @@ -0,0 +1,2 @@ +MD5 (mrundlg-1.0.tar.bz2) = e91f307aeb0617e424fb1e306dda422b +SIZE (mrundlg-1.0.tar.bz2) = 4873 diff --git a/deskutils/mrundlg/files/patch-mrundlg.c b/deskutils/mrundlg/files/patch-mrundlg.c new file mode 100644 index 000000000000..6733596c296b --- /dev/null +++ b/deskutils/mrundlg/files/patch-mrundlg.c @@ -0,0 +1,12 @@ +--- mrundlg.c.orig Mon Jul 11 12:15:16 2005 ++++ mrundlg.c Tue Jul 12 14:50:45 2005 +@@ -250,8 +250,8 @@ + + void txtCommand_Change (Widget w, XtPointer client_data, XmAnyCallbackStruct *call) + { +- if (szCommand != NULL) XtFree(szCommand); + Arg args; String szValue; ++ if (szCommand != NULL) XtFree(szCommand); + XtSetArg(args, XmNvalue, &szValue); + XtGetValues(w, &args, 1); + szCommand = szValue; diff --git a/deskutils/mrundlg/pkg-descr b/deskutils/mrundlg/pkg-descr new file mode 100644 index 000000000000..a1a1a3599617 --- /dev/null +++ b/deskutils/mrundlg/pkg-descr @@ -0,0 +1,7 @@ +An application / program launcher for Motif/X much like the +Windows Run Dialog. + +WWW: http://matt.sixxgate.com/ + +- Matthew Holder +sixxgate@hotmail.com diff --git a/deskutils/mrundlg/pkg-plist b/deskutils/mrundlg/pkg-plist new file mode 100644 index 000000000000..a33455e5f2c1 --- /dev/null +++ b/deskutils/mrundlg/pkg-plist @@ -0,0 +1,2 @@ +bin/mrundlg +lib/X11/app-defaults/MRunDlg |