Skip site navigation (1)Skip section navigation (2)
Date:      11 Jan 1999 13:08:21 -0000
From:      nbm@rucus.ru.ac.za
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   ports/9439: new port: pdmenu
Message-ID:  <19990111130821.2575.qmail@rucus.ru.ac.za>

next in thread | raw e-mail | index | archive | help

>Number:         9439
>Category:       ports
>Synopsis:       new port: pdmenu
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jan 11 05:20:01 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Neil Blakey-Milner
>Release:        FreeBSD 3.0-CURRENT i386
>Organization:
Rhodes University Computer Users' Society
>Environment:

FreeBSD rucus.ru.ac.za 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Wed Nov 11 10:47:28 SAT 1998     root@rucus.ru.ac.za:/usr/src/sys/compile/WOOF  i386

>Description:

Pdmenu is a simple menu system suitable for login shells for beginner users.

>How-To-Repeat:
>Fix:
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	pdmenu
#	pdmenu/Makefile
#	pdmenu/pkg
#	pdmenu/pkg/COMMENT
#	pdmenu/pkg/DESCR
#	pdmenu/pkg/PLIST
#	pdmenu/files
#	pdmenu/files/md5
#	pdmenu/patches
#	pdmenu/patches/patch-aa
#	pdmenu/patches/patch-ab
#
echo c - pdmenu
mkdir -p pdmenu > /dev/null 2>&1
echo x - pdmenu/Makefile
sed 's/^X//' >pdmenu/Makefile << 'END-of-pdmenu/Makefile'
X# New ports collection makefile for:	pdmenu
X# Version required:     1.2.38
X# Date created:		14 December 1998
X# Whom:			Neil Blakey-Milner <nbm@rucus.ru.ac.za>
X#
X# $Id$
X
XDISTNAME=       pdmenu-1.2.38
XCATEGORIES=	misc
XMASTER_SITES=	http://kitenet.net/programs/code/pdmenu/
XDISTFILES=	pdmenu_1.2.38.tar.gz
X
XMAINTAINER=	nbm@rucus.ru.ac.za
X
XLIB_DEPENDS=    slang.1:${PORTSDIR}/devel/libslang
X
XGNU_CONFIGURE=	yes
XUSE_GMAKE=	yes
X
XCONFIGURE_ENV=  SLANG_LIB_LOC='${PREFIX}/lib' \
X		SLANG_H_LOC='${PREFIX}/include/slang.h'
X
Xpre-install:
X	${MKDIR} ${PREFIX}/lib/pdmenu
X
X.include <bsd.port.mk>
END-of-pdmenu/Makefile
echo c - pdmenu/pkg
mkdir -p pdmenu/pkg > /dev/null 2>&1
echo x - pdmenu/pkg/COMMENT
sed 's/^X//' >pdmenu/pkg/COMMENT << 'END-of-pdmenu/pkg/COMMENT'
XA simple console menu program.
END-of-pdmenu/pkg/COMMENT
echo x - pdmenu/pkg/DESCR
sed 's/^X//' >pdmenu/pkg/DESCR << 'END-of-pdmenu/pkg/DESCR'
XPdmenu is a menuing system for Unix. It is designed to be easy to
Xuse, and is suitable for a login shell for inexperienced users, or
Xit can just be ran at the command line as a handy menu.
END-of-pdmenu/pkg/DESCR
echo x - pdmenu/pkg/PLIST
sed 's/^X//' >pdmenu/pkg/PLIST << 'END-of-pdmenu/pkg/PLIST'
Xbin/pdmenu
Xetc/pdmenurc
Xlib/pdmenu/showdir.pl
Xlib/pdmenu/editdir.pl
Xman/man1/pdmenu.1
Xman/man5/pdmenurc.5
END-of-pdmenu/pkg/PLIST
echo c - pdmenu/files
mkdir -p pdmenu/files > /dev/null 2>&1
echo x - pdmenu/files/md5
sed 's/^X//' >pdmenu/files/md5 << 'END-of-pdmenu/files/md5'
XMD5 (pdmenu_1.2.38.tar.gz) = 6f2c9257443d496be40c01cb1d227a1f
END-of-pdmenu/files/md5
echo c - pdmenu/patches
mkdir -p pdmenu/patches > /dev/null 2>&1
echo x - pdmenu/patches/patch-aa
sed 's/^X//' >pdmenu/patches/patch-aa << 'END-of-pdmenu/patches/patch-aa'
X--- configure.in.orig	Sat Jan  9 14:08:32 1999
X+++ configure.in	Sat Jan  9 14:10:14 1999
X@@ -46,7 +46,7 @@
X dnl The function we check for in libslang is important, because
X dnl we need to make sure we have the right version of slang.
X AC_CHECK_LIB(slang, SLsig_block_signals,, 
X-	AC_MSG_ERROR(can't find required slang library or library is obsolete. Try setting the SLANG_LIB_LOC environment variable to point to the directory containing the slang library.))
X+	AC_MSG_ERROR(can't find required slang library or library is obsolete. Try setting the SLANG_LIB_LOC environment variable to point to the directory containing the slang library.),-ltermcap)
X 
X dnl Checks for header files.
X AC_HEADER_STDC
END-of-pdmenu/patches/patch-aa
echo x - pdmenu/patches/patch-ab
sed 's/^X//' >pdmenu/patches/patch-ab << 'END-of-pdmenu/patches/patch-ab'
X--- configure.orig	Sat Jan  9 14:08:55 1999
X+++ configure	Sat Jan  9 14:10:24 1999
X@@ -842,7 +842,7 @@
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   ac_save_LIBS="$LIBS"
X-LIBS="-lslang  $LIBS"
X+LIBS="-lslang -ltermcap $LIBS"
X cat > conftest.$ac_ext <<EOF
X #line 848 "configure"
X #include "confdefs.h"
END-of-pdmenu/patches/patch-ab
exit

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990111130821.2575.qmail>