From jedgar@pawn.primelocation.net Mon Oct 25 16:58:00 1999
Return-Path: <jedgar@pawn.primelocation.net>
Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235])
	by hub.freebsd.org (Postfix) with ESMTP id 5658815294
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 25 Oct 1999 16:57:53 -0700 (PDT)
	(envelope-from jedgar@pawn.primelocation.net)
Received: by pawn.primelocation.net (Postfix, from userid 1003)
	id E5A8D9B22; Mon, 25 Oct 1999 19:57:51 -0400 (EDT)
Message-Id: <19991025235751.E5A8D9B22@pawn.primelocation.net>
Date: Mon, 25 Oct 1999 19:57:51 -0400 (EDT)
From: jedgar@fxp.org
Sender: jedgar@pawn.primelocation.net
Reply-To: jedgar@fxp.org
To: FreeBSD-gnats-submit@freebsd.org
Subject: New port: math/grpn
X-Send-Pr-Version: 3.2

>Number:         14526
>Category:       ports
>Synopsis:       New port: math/grpn
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Oct 25 17:00:00 PDT 1999
>Closed-Date:    Fri Nov 26 12:49:56 PST 1999
>Last-Modified:  Fri Nov 26 12:50:36 PST 1999
>Originator:     Chris D. Faulhaber
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
BUGO - BSD Users Group of Orlando
>Environment:

FreeBSD 4.0-CURRENT i386

>Description:

New port: math/grpn

GTK+-based reverse polish notation (RPN) calculator

>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:
#
#	grpn
#	grpn/Makefile
#	grpn/files
#	grpn/files/md5
#	grpn/pkg
#	grpn/pkg/PLIST
#	grpn/pkg/COMMENT
#	grpn/pkg/DESCR
#	grpn/patches
#	grpn/patches/patch-aa
#
echo c - grpn
mkdir -p grpn > /dev/null 2>&1
echo x - grpn/Makefile
sed 's/^X//' >grpn/Makefile << 'END-of-grpn/Makefile'
X# New ports collection makefile for:	grpn
X# Version required:			1.1.0
X# Date created:				25 October 1999
X# Whom:					Chris D. Faulhaber <jedgar@fxp.org>
X#
X# $FreeBSD$
X#
X
XDISTNAME=	grpn-1.1.0
XCATEGORIES=	math gnome
XMASTER_SITES=	http://wilkins.ne.mediaone.net/grpn/
X
XMAINTAINER=	jedgar@fxp.org
X
XLIB_DEPENDS=	gtk12.2:${PORTSDIR}/x11-toolkits/gtk12
X
XALL_TARGET=
XUSE_X_PREFIX=	yes
XGTK_CONFIG?=	${X11BASE}/bin/gtk12-config
XMAKE_ENV+=	GTK_CONFIG=${GTK_CONFIG} \
X		X11BASE=${X11BASE}
X
Xdo-install:
X		${INSTALL_PROGRAM} ${WRKSRC}/grpn ${PREFIX}/bin
X
X.include <bsd.port.mk>
END-of-grpn/Makefile
echo c - grpn/files
mkdir -p grpn/files > /dev/null 2>&1
echo x - grpn/files/md5
sed 's/^X//' >grpn/files/md5 << 'END-of-grpn/files/md5'
XMD5 (grpn-1.1.0.tar.gz) = 64379257b174f5ad98dcc25c847b6e5d
END-of-grpn/files/md5
echo c - grpn/pkg
mkdir -p grpn/pkg > /dev/null 2>&1
echo x - grpn/pkg/PLIST
sed 's/^X//' >grpn/pkg/PLIST << 'END-of-grpn/pkg/PLIST'
Xbin/grpn
END-of-grpn/pkg/PLIST
echo x - grpn/pkg/COMMENT
sed 's/^X//' >grpn/pkg/COMMENT << 'END-of-grpn/pkg/COMMENT'
XGTK+-based reverse polish notation (RPN) calculator
END-of-grpn/pkg/COMMENT
echo x - grpn/pkg/DESCR
sed 's/^X//' >grpn/pkg/DESCR << 'END-of-grpn/pkg/DESCR'
XGRPN is a RPN calculator for the X Window system built using
Xthe GIMP Toolkit (GTK).
X
XGRPN works with real numbers, complex numbers, matrices, and
Xcomplex matrices.  Numbers can be displayed in 4 different
Xradix modes, and complex numbers can be displayed in either
XCartesian or polar form.
X
XWWW: http://wilkins.ne.mediaone.net/grpn.html
X
X- Chris D. Faulhaber
Xjedgar@fxp.org
END-of-grpn/pkg/DESCR
echo c - grpn/patches
mkdir -p grpn/patches > /dev/null 2>&1
echo x - grpn/patches/patch-aa
sed 's/^X//' >grpn/patches/patch-aa << 'END-of-grpn/patches/patch-aa'
X--- Makefile.orig	Mon May 31 21:46:31 1999
X+++ Makefile	Mon Oct 25 19:52:03 1999
X@@ -3,7 +3,7 @@
X # Please read the next few lines and enter the correct values.
X 
X # What compiler should be used
X-CC = gcc 
X+CC?= gcc 
X 
X # Where to find the gtk-config script
X GTK_DIR =
X@@ -17,9 +17,9 @@
X # add -DUSE_GNOME if you want to make grpn GNOME compliant.
X 
X 
X-CFLAGS = -g -O2 -I/usr/X11/include  `$(GTK_DIR)gtk-config --cflags` -DGTK_VER_1_1
X+CFLAGS+= -I${X11BASE}/include -I${PREFIX}/include  `${GTK_CONFIG} --cflags` -DGTK_VER_1_1
X 
X-DFLAGS =  -L/usr/X11/lib 
X+DFLAGS = -L${X11BASE}/lib -L${PREFIX}/lib
X 
X # end of user configurable section
X 
X@@ -34,7 +34,7 @@
X 
X 
X 
X-LIBS   = `$(GTK_DIR)gtk-config --libs` -lX11 -lm 
X+LIBS   = `${GTK_CONFIG} --libs` -lX11 -lm 
X 
X 
X grpn:	$(OBJS)
END-of-grpn/patches/patch-aa
exit


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: steve 
State-Changed-When: Fri Nov 26 12:49:56 PST 1999 
State-Changed-Why:  
New port committed, thanks! 
>Unformatted:
