From trasz@pin.if.uz.zgora.pl  Tue Aug  1 18:35:15 2006
Return-Path: <trasz@pin.if.uz.zgora.pl>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6A45616A505
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  1 Aug 2006 18:35:15 +0000 (UTC)
	(envelope-from trasz@pin.if.uz.zgora.pl)
Received: from pin.if.uz.zgora.pl (pin.if.uz.zgora.pl [212.109.128.251])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 8A3BC43D77
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  1 Aug 2006 18:35:09 +0000 (GMT)
	(envelope-from trasz@pin.if.uz.zgora.pl)
Received: by pin.if.uz.zgora.pl (Postfix, from userid 1001)
	id 02BE439912; Tue,  1 Aug 2006 20:35:37 +0200 (CEST)
Message-Id: <20060801183538.02BE439912@pin.if.uz.zgora.pl>
Date: Tue,  1 Aug 2006 20:35:37 +0200 (CEST)
From: trasz <trasz@pin.if.uz.zgora.pl>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] devel/libcoyotl: Collection of useful C++ classes
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         101209
>Category:       ports
>Synopsis:       [NEW PORT] devel/libcoyotl: Collection of useful C++ classes
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    novel
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 01 18:40:23 GMT 2006
>Closed-Date:    Wed Aug 02 08:22:32 GMT 2006
>Last-Modified:  Wed Aug 02 08:22:32 GMT 2006
>Originator:     trasz
>Release:        FreeBSD 6.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD pin.if.uz.zgora.pl 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sat Jun  3 01:12:10 CEST
>Description:
The Coyotl library collects several C++ tools that have proven useful
in many of my programs, but which aren't "big enough" to warrant
an individual library.

Key features of Coyotl include:
 -- A polymorphic collection of the best psuedorandom number generators,
    including the Mersenne Twister and Marsaglia's favorites.
 -- Utilities for floating-point numbers, including additional functions
    for trigonometry, least common multiple, greatest common denominator,
    rounding, and other purposes.
 -- A simple cross-platform command-line parser.
 -- A framework for generating random rectangular mazes.
 -- A template for fixed-point math based on different integer sizes
    and decimal point locations.
 -- Templatized sorting utilities (designed before Std. C++'s <algorithms>,
    but still useful)
 -- Validation tools for "Design by Contract" programming.

Author:	Scott Robert Ladd
WWW:	http://www.coyotegulch.com/products/libcoyotl/index.html

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- libcoyotl-3.1.0.shar begins here ---
# 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:
#
#	libcoyotl
#	libcoyotl/pkg-descr
#	libcoyotl/Makefile
#	libcoyotl/pkg-plist
#	libcoyotl/files
#	libcoyotl/files/patch-test-Makefile.in
#	libcoyotl/distinfo
#
echo c - libcoyotl
mkdir -p libcoyotl > /dev/null 2>&1
echo x - libcoyotl/pkg-descr
sed 's/^X//' >libcoyotl/pkg-descr << 'END-of-libcoyotl/pkg-descr'
XThe Coyotl library collects several C++ tools that have proven useful
Xin many of my programs, but which aren't "big enough" to warrant
Xan individual library.
X
XKey features of Coyotl include:
X -- A polymorphic collection of the best psuedorandom number generators,
X    including the Mersenne Twister and Marsaglia's favorites.
X -- Utilities for floating-point numbers, including additional functions
X    for trigonometry, least common multiple, greatest common denominator,
X    rounding, and other purposes.
X -- A simple cross-platform command-line parser.
X -- A framework for generating random rectangular mazes.
X -- A template for fixed-point math based on different integer sizes
X    and decimal point locations.
X -- Templatized sorting utilities (designed before Std. C++'s <algorithms>,
X    but still useful)
X -- Validation tools for "Design by Contract" programming.
X
XAuthor:	Scott Robert Ladd
XWWW:	http://www.coyotegulch.com/products/libcoyotl/index.html
END-of-libcoyotl/pkg-descr
echo x - libcoyotl/Makefile
sed 's/^X//' >libcoyotl/Makefile << 'END-of-libcoyotl/Makefile'
X# New ports collection makefile for:	libcoyotl
X# Date created:		2006-08-01
X# Whom:			trasz <trasz@pin.if.uz.zgora.pl>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	libcoyotl
XPORTVERSION=	3.1.0
XCATEGORIES=	devel
XMASTER_SITES=	http://www.coyotegulch.com/distfiles/
X
XMAINTAINER=	trasz@pin.if.uz.zgora.pl
XCOMMENT=	Collection of useful C++ classes
X
XINSTALLS_SHLIB=	yes
XGNU_CONFIGURE=	yes
XCONFIGURE_ARGS=	CPPFLAGS=-I${PREFIX}/include/ LDFLAGS=-L${PREFIX}/lib/
X
X.include <bsd.port.mk>
END-of-libcoyotl/Makefile
echo x - libcoyotl/pkg-plist
sed 's/^X//' >libcoyotl/pkg-plist << 'END-of-libcoyotl/pkg-plist'
Xlib/libcoyotl-3.1.so.4
Xlib/libcoyotl.la
Xlib/libcoyotl.a
Xinclude/libcoyotl/array.h
Xinclude/libcoyotl/cmwc4096.h
Xinclude/libcoyotl/command_line.h
Xinclude/libcoyotl/crccalc.h
Xinclude/libcoyotl/kissrng.h
Xinclude/libcoyotl/maze.h
Xinclude/libcoyotl/maze_recursive.h
Xinclude/libcoyotl/maze_renderer.h
Xinclude/libcoyotl/mtwister.h
Xinclude/libcoyotl/mwc1038.h
Xinclude/libcoyotl/mwc256.h
Xinclude/libcoyotl/prng.h
Xinclude/libcoyotl/realutil.h
Xinclude/libcoyotl/sortutil.h
Xinclude/libcoyotl/validator.h
Xbin/test_prng
Xbin/test_maze
X@dirrm include/libcoyotl
END-of-libcoyotl/pkg-plist
echo c - libcoyotl/files
mkdir -p libcoyotl/files > /dev/null 2>&1
echo x - libcoyotl/files/patch-test-Makefile.in
sed 's/^X//' >libcoyotl/files/patch-test-Makefile.in << 'END-of-libcoyotl/files/patch-test-Makefile.in'
Xdiff -urN test.orig/Makefile.in test/Makefile.in
X--- test.orig/Makefile.in	Tue Aug  1 18:01:32 2006
X+++ test/Makefile.in	Tue Aug  1 18:01:44 2006
X@@ -112,7 +112,7 @@
X INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
X LDFLAGS = @LDFLAGS@
X LIBOBJS = @LIBOBJS@
X-LIBS = -L../libcoyotl -lrt -lpng -lcoyotl
X+LIBS = -L../libcoyotl -lpng -lcoyotl
X LIBTOOL = @LIBTOOL@
X LN_S = @LN_S@
X LTLIBOBJS = @LTLIBOBJS@
END-of-libcoyotl/files/patch-test-Makefile.in
echo x - libcoyotl/distinfo
sed 's/^X//' >libcoyotl/distinfo << 'END-of-libcoyotl/distinfo'
XMD5 (libcoyotl-3.1.0.tar.gz) = 5c1d9cfce494f123f52c399b39925bdb
XSHA256 (libcoyotl-3.1.0.tar.gz) = 540cb2e131cc345f94eaa1a7682532e200b57efd6b6a5e2d9e68aa7819f63860
XSIZE (libcoyotl-3.1.0.tar.gz) = 346384
END-of-libcoyotl/distinfo
exit
--- libcoyotl-3.1.0.shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->novel 
Responsible-Changed-By: novel 
Responsible-Changed-When: Wed Aug 2 06:24:51 UTC 2006 
Responsible-Changed-Why:  
I will take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=101209 
State-Changed-From-To: open->closed 
State-Changed-By: novel 
State-Changed-When: Wed Aug 2 08:15:36 UTC 2006 
State-Changed-Why:  
New port added, thanks! 

Please note, I have made the following changes to the shar you 
submitted: 

- I have added png to LIB_DEPENDS  because it fails 
to build without libpng installed 
- I have added missing files to pkg-plist (symlinks to 
.so to be exact) 
- I have removed Authors: field from pkg-descr. I know, 
port(1) adds it, but it's not `official' keyword for pkg-descr, has 
no sense and should be avoided 

http://www.freebsd.org/cgi/query-pr.cgi?pr=101209 
>Unformatted:
