Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

8
misc/9menu/DESCR Normal file
View File

@@ -0,0 +1,8 @@
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.
Author: Arnold Robbins <arnold@gnu.ai.mit.edu>

23
misc/9menu/Makefile Normal file
View File

@@ -0,0 +1,23 @@
# $NetBSD: Makefile,v 1.23 2012/10/08 09:57:15 asau Exp $
DISTNAME= 9menu-1.8
PKGREVISION= 1
CATEGORIES= misc plan9
MASTER_SITES= ftp://ftp.freefriends.org/arnold/Source/
EXTRACT_SUFX= .shar.gz
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Simple menu patterned after the plan9 user interface
MAKE_FILE= Makefile.noimake
BUILD_TARGET= 9menu
WRKSRC= ${WRKDIR}
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/9menu ${DESTDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/9menu.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../x11/libX11/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

3
misc/9menu/PLIST Normal file
View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:27:28 zuntum Exp $
bin/9menu
man/man1/9menu.1

6
misc/9menu/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.7 2005/02/24 11:02:49 agc Exp $
SHA1 (9menu-1.8.shar.gz) = 8eed85ccf211d967fcf9100beaf6bfc2a3330ea5
RMD160 (9menu-1.8.shar.gz) = e91eaa901c9f7db3860be49f977a9460bbafd01e
Size (9menu-1.8.shar.gz) = 8990 bytes
SHA1 (patch-aa) = 381ea9092583fc0e91a9cc619ea1ee0d32c49abb

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-aa,v 1.2 2003/06/04 08:50:13 agc Exp $
--- Makefile.noimake 2003/06/04 08:23:07 1.1
+++ Makefile.noimake 2003/06/04 08:37:56
@@ -5,9 +5,8 @@
# Arnold Robbins
# arnold@skeeve.atl.ga.us
-CC = gcc
-CFLAGS = -g -O
-LIBS = -lX11
+CFLAGS+= -I${X11BASE}/include
+LIBS = ${LDFLAGS} -lX11
9menu: 9menu.c
$(CC) $(CFLAGS) 9menu.c $(LIBS) -o 9menu