Add 9menu port.

This commit is contained in:
angelos 1997-12-02 02:34:15 +00:00
parent 168112a692
commit 493e76ba1b
6 changed files with 66 additions and 0 deletions

21
plan9/9menu/Makefile Normal file
View File

@ -0,0 +1,21 @@
# OpenBSD makefile for: 9menu
# Version required: 1.5
# Date created: December 1, 1997
# Whom: Angelos D. Keromytis
#
# $OpenBSD: Makefile,v 1.1.1.1 1997/12/02 02:34:15 angelos Exp $
#
DISTNAME= 9menu-1.5
CATEGORIES= plan9
MASTER_SITES= ftp://ftp.mathcs.emory.edu/pub/arnold/
EXTRACT_SUFX= .shar.gz
MAINTAINER= angelos@openbsd.org
NO_WRKSUBDIR= yes
EXTRACT_CMD= zcat
EXTRACT_BEFORE_ARGS=
EXTRACT_AFTER_ARGS= |sh
.include <bsd.port.mk>

1
plan9/9menu/files/md5 Normal file
View File

@ -0,0 +1 @@
MD5 (9menu-1.5.shar.gz) = 00f8dcb2bd1ab9291ce15834eb4e1588

View File

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

1
plan9/9menu/pkg/COMMENT Normal file
View File

@ -0,0 +1 @@
A simple menu patterened after plan9

10
plan9/9menu/pkg/DESCR Normal file
View File

@ -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@gnu.ai.mit.edu

2
plan9/9menu/pkg/PLIST Normal file
View File

@ -0,0 +1,2 @@
bin/9menu
man/man1/9menu.1