From andrew@fubar.geek.nz  Tue Apr 18 08:50:27 2006
Return-Path: <andrew@fubar.geek.nz>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id F316516A4E0
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 18 Apr 2006 08:50:26 +0000 (UTC)
	(envelope-from andrew@fubar.geek.nz)
Received: from mta206-rme.xtra.co.nz (mta206-rme.xtra.co.nz [210.86.15.58])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0F92943D45
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 18 Apr 2006 08:50:25 +0000 (GMT)
	(envelope-from andrew@fubar.geek.nz)
Received: from mta4-rme.xtra.co.nz ([210.86.15.143])
          by mta206-rme.xtra.co.nz with ESMTP
          id <20060418085024.KDXS22037.mta206-rme.xtra.co.nz@mta4-rme.xtra.co.nz>
          for <FreeBSD-gnats-submit@freebsd.org>;
          Tue, 18 Apr 2006 20:50:24 +1200
Received: from serv.int.fubar.geek.nz ([222.153.89.79])
          by mta4-rme.xtra.co.nz with ESMTP
          id <20060418085023.HVYB8268.mta4-rme.xtra.co.nz@serv.int.fubar.geek.nz>
          for <FreeBSD-gnats-submit@freebsd.org>;
          Tue, 18 Apr 2006 20:50:23 +1200
Received: by serv.int.fubar.geek.nz (Postfix, from userid 1001)
	id 7C0076160; Tue, 18 Apr 2006 20:50:22 +1200 (NZST)
Message-Id: <20060418085022.7C0076160@serv.int.fubar.geek.nz>
Date: Tue, 18 Apr 2006 20:50:22 +1200 (NZST)
From: Andrew Turner <andrew+ports@fubar.geek.nz>
Reply-To: Andrew Turner <andrew+ports@fubar.geek.nz>
To: FreeBSD-gnats-submit@freebsd.org
Cc: andrew@fubar.geek.nz
Subject: New Port: devel/libaura Library of Assorted Useful Reusable Abstractions
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         95988
>Category:       ports
>Synopsis:       New Port: devel/libaura Library of Assorted Useful Reusable Abstractions
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    philip
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Apr 18 09:00:27 GMT 2006
>Closed-Date:    Wed Apr 19 06:50:34 GMT 2006
>Last-Modified:  Wed Apr 19 06:50:34 GMT 2006
>Originator:     Andrew Turner
>Release:        FreeBSD 5.4-STABLE i386
>Organization:
none
>Environment:
System: FreeBSD serv.int.fubar.geek.nz 5.4-STABLE FreeBSD 5.4-STABLE #9: Sun Jan 29 12:45:34 NZDT 2006 root@serv.int.fubar.geek.nz:/usr/obj/srctrees/RELENG_5/sys/GENERIC i386


	
>Description:
	The port devel/libaura is a collection of useful abstractions including dictionaries, memory allocation, buffers.
	Philip Paeps should have to distfiles to be placed in ${MASTER_SITE_LOCAL}. MASTER_SITE_SUBDIR needs to be set to the appropriate value.
>How-To-Repeat:
	
>Fix:

	

--- port-devel-libaura.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:
#
#	Makefile
#	distinfo
#	files
#	files/patch-Makefile
#	pkg-descr
#
echo x - Makefile
sed 's/^X//' >Makefile << 'END-of-Makefile'
X# New ports collection makefile for:   libaura
X# Date created:        18 April 2006
X# Whom:                Andrew Turner <andrew+ports@fubar.geek.nz>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	libaura
XPORTVERSION=	3.1.20051222
XCATEGORIES=	devel
XMASTER_SITES=	${MASTER_SITE_LOCAL}
X
XMAINTAINER=	andrew+ports@fubar.geek.nz
XCOMMENT=	Library of Assorted Useful Reusable Abstractions
X
XUSE_BZIP2=	yes
XINSTALLS_SHLIB=	yes
X
XSONAME=		${SOLINK}.3
XSOLINK=		${PORTNAME}3.so
X
XPLIST_FILES=	lib/${SONAME} \
X		lib/${SOLINK} \
X		include/aura3/buffer.h \
X		include/aura3/dict.h \
X		include/aura3/popen.h \
X		include/aura3/fspred.h \
X		include/aura3/mem.h
XPLIST_DIRS=	include/aura3
XPORTDOCS=	README
X
XMAKE_ENV=	SONAME=${SONAME} SOLINK=${SOLINK}
X
Xdo-install:
X	${INSTALL_PROGRAM} ${WRKSRC}/${SONAME} ${PREFIX}/lib/${SONAME}
X	${LN} -s ${PREFIX}/lib/${SONAME} ${PREFIX}/lib/${SOLINK}
X	${MKDIR} ${PREFIX}/include/aura3/
X	${INSTALL_DATA} ${WRKSRC}/buffer.h ${PREFIX}/include/aura3/
X	${INSTALL_DATA} ${WRKSRC}/dict.h ${PREFIX}/include/aura3/
X	${INSTALL_DATA} ${WRKSRC}/popen.h ${PREFIX}/include/aura3/
X	${INSTALL_DATA} ${WRKSRC}/fspred.h ${PREFIX}/include/aura3/
X	${INSTALL_DATA} ${WRKSRC}/mem.h ${PREFIX}/include/aura3/
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
X.endif
X
X.include <bsd.port.mk>
END-of-Makefile
echo x - distinfo
sed 's/^X//' >distinfo << 'END-of-distinfo'
XMD5 (libaura-3.1.20051222.tar.bz2) = d684f892863574c131f8ef0ccf47161a
XSHA256 (libaura-3.1.20051222.tar.bz2) = 3bb1bfcdeb6bb6025fe1e4c563060a667a71a11954e5e7efa46e71c12ab74615
XSIZE (libaura-3.1.20051222.tar.bz2) = 10929
END-of-distinfo
echo c - files
mkdir -p files > /dev/null 2>&1
echo x - files/patch-Makefile
sed 's/^X//' >files/patch-Makefile << 'END-of-files/patch-Makefile'
X--- Makefile.orig	Tue Apr 18 12:32:27 2006
X+++ Makefile	Tue Apr 18 12:56:00 2006
X@@ -1,9 +1,6 @@
X # Makefile for libaura.
X # $Id: Makefile,v 1.20 2005/08/26 22:44:37 cpressey Exp $
X 
X-BASE?=../..
X-include ${BASE}/Config
X-
X LIB=	aura
X LIB_VER=3
X 
END-of-files/patch-Makefile
echo x - pkg-descr
sed 's/^X//' >pkg-descr << 'END-of-pkg-descr'
XLibaura is a library of Assorted Useful Reusable Abstractions -
Xdata structures and utilities for C language programming.  At
Xpresent, they include:
X
X- memory allocators/deallocators
X- key<->value dictionaries (hashed or sorted)
X- extensible buffers
X- filesystem predicates (is_dir, is_named_pipe, etc)
X- popen() variation which allows the caller to know the pid of
X  the process on the other end of the pipe.
END-of-pkg-descr
exit
--- port-devel-libaura.shar ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->philip 
Responsible-Changed-By: philip 
Responsible-Changed-When: Tue Apr 18 11:33:03 UTC 2006 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=95988 
State-Changed-From-To: open->closed 
State-Changed-By: philip 
State-Changed-When: Wed Apr 19 06:50:32 UTC 2006 
State-Changed-Why:  
New port added. Thanks! 

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