diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-08-14 04:08:02 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-08-14 04:08:02 +0000 |
commit | 4a6b440781fce7e5e00b01f8e3b0026aef5b3705 (patch) | |
tree | ec76581865429a55b97c41e17913a7edc69067f0 /x11/9menu | |
parent | ae8f5d05912d85bd9859a2d59ee74204ba4a85d1 (diff) | |
download | ports-4a6b440781fce7e5e00b01f8e3b0026aef5b3705.tar.gz ports-4a6b440781fce7e5e00b01f8e3b0026aef5b3705.zip |
Various plan9 utilities. It's such a complete collection, I'm going
to import it all at once!
Submitted by: Eric L. Hernes <erich@lodgenet.com>
Notes
Notes:
svn path=/head/; revision=2055
Diffstat (limited to 'x11/9menu')
-rw-r--r-- | x11/9menu/Makefile | 19 | ||||
-rw-r--r-- | x11/9menu/distinfo | 1 | ||||
-rw-r--r-- | x11/9menu/files/patch-aa | 31 | ||||
-rw-r--r-- | x11/9menu/pkg-comment | 1 | ||||
-rw-r--r-- | x11/9menu/pkg-descr | 10 | ||||
-rw-r--r-- | x11/9menu/pkg-plist | 2 |
6 files changed, 64 insertions, 0 deletions
diff --git a/x11/9menu/Makefile b/x11/9menu/Makefile new file mode 100644 index 000000000000..7279b9745dd1 --- /dev/null +++ b/x11/9menu/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: 9menu +# Version required: 1.4 +# Date created: Sun Aug 13 12:36:14 CDT 1995 +# Whom: erich@rrnet.com +# +# $Id$ +# + +DISTNAME= 9menu-1.4 +CATEGORIES+= plan9 +MASTER_SITES= ftp://ftp.ecf.toronto.edu/pub/plan9/arnold/ +EXTRACT_SUFX= .shar.gz + +NO_WRKSUBDIR= yes +EXTRACT_CMD= zcat +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= |sh + +.include <bsd.port.mk> diff --git a/x11/9menu/distinfo b/x11/9menu/distinfo new file mode 100644 index 000000000000..942e6de3d2e8 --- /dev/null +++ b/x11/9menu/distinfo @@ -0,0 +1 @@ +MD5 (9menu-1.4.shar.gz) = 56b5f19f2d4daa494250f89485dd355a diff --git a/x11/9menu/files/patch-aa b/x11/9menu/files/patch-aa new file mode 100644 index 000000000000..375c3ac91895 --- /dev/null +++ b/x11/9menu/files/patch-aa @@ -0,0 +1,31 @@ +*** Makefile.orig Fri Aug 11 15:55:35 1995 +--- Makefile Fri Aug 11 16:03:26 1995 +*************** +*** 6,13 **** + # arnold@skeeve.atl.ga.us + + CC = gcc +! CFLAGS = -g -O +! LIBS = -lX11 + + 9menu: 9menu.c + $(CC) $(CFLAGS) 9menu.c $(LIBS) -o 9menu +--- 6,23 ---- + # arnold@skeeve.atl.ga.us + + CC = gcc +! CFLAGS = -O -I/usr/X11R6/include +! LIBS = -L/usr/X11R6/lib -lX11 +! +! +! all: 9menu + + 9menu: 9menu.c + $(CC) $(CFLAGS) 9menu.c $(LIBS) -o 9menu ++ ++ install: ++ $(INSTALL) -c 9menu $(PREFIX)/bin ++ $(INSTALL) -c 9menu.1 $(PREFIX)/man/man1 ++ strip $(PREFIX)/bin/9menu ++ gzip -9nf $(PREFIX)/man/man1/9menu.1 ++ diff --git a/x11/9menu/pkg-comment b/x11/9menu/pkg-comment new file mode 100644 index 000000000000..ccb6bdce17b6 --- /dev/null +++ b/x11/9menu/pkg-comment @@ -0,0 +1 @@ +9menu 1.4 -- a simple menu patterened after plan9 diff --git a/x11/9menu/pkg-descr b/x11/9menu/pkg-descr new file mode 100644 index 000000000000..252966458457 --- /dev/null +++ b/x11/9menu/pkg-descr @@ -0,0 +1,10 @@ +This is 9menu, a simple program that allows you to create X menus from the +shell, where each menu item will run a command. 9menu is intended for use +with 9wm, but can be used with any other window manager. + +The idea of a command line menu generator is from xmenu, but xmenu was +exclusively a pop-up menu, not what I wanted. + +-- +Arnold Robbins +arnold@skeeve.atl.ga.us diff --git a/x11/9menu/pkg-plist b/x11/9menu/pkg-plist new file mode 100644 index 000000000000..d0ee602b0659 --- /dev/null +++ b/x11/9menu/pkg-plist @@ -0,0 +1,2 @@ +bin/9menu +man/man1/9menu.1.gz |