From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 10 17:10:21 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F123337B401 for ; Tue, 10 Jun 2003 17:10:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6086443FA3 for ; Tue, 10 Jun 2003 17:10:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5B0ABUp056644 for ; Tue, 10 Jun 2003 17:10:11 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5B0ABqB056643; Tue, 10 Jun 2003 17:10:11 -0700 (PDT) Resent-Date: Tue, 10 Jun 2003 17:10:11 -0700 (PDT) Resent-Message-Id: <200306110010.h5B0ABqB056643@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sergei Kolobov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61BD937B401 for ; Tue, 10 Jun 2003 17:05:53 -0700 (PDT) Received: from outpost.globcon.net (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id E3D4943F75 for ; Tue, 10 Jun 2003 17:05:51 -0700 (PDT) (envelope-from sgk@kolobov.com) Received: (qmail 99003 invoked from network); 11 Jun 2003 00:05:34 -0000 Received: from h166.lukarcos.com (HELO kolobov.com) (62.141.88.166) by outpost.globcon.net with SMTP; 11 Jun 2003 00:05:34 -0000 Received: (qmail 62570 invoked by uid 911); 11 Jun 2003 00:02:39 -0000 Message-Id: <20030611000239.62569.qmail@kolobov.com> Date: 11 Jun 2003 00:02:39 -0000 From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/53178: [PATCH] Update devel/c2lib to 1.4.2, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 00:10:21 -0000 >Number: 53178 >Category: ports >Synopsis: [PATCH] Update devel/c2lib to 1.4.2, take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jun 10 17:10:11 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Sergei Kolobov >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD elf.chetwood.ru 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Thu Jun 5 02:19:41 MSD >Description: In memory of AlanE: - Update to 1.4.2 - Makefile cleanup - Reword pkg-descr, add Author tag - Adopt this orphan >How-To-Repeat: >Fix: --- c2lib-1.4.2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/c2lib/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- Makefile 2003/06/08 21:13:44 1.19 +++ Makefile 2003/06/11 00:00:04 @@ -1,5 +1,3 @@ -# ex:ts=8 -*-mode: makefile-*- -# # New ports collection makefile for: c2lib # Date created: 2002-12-22 # Whom: Alan Eldridge @@ -8,35 +6,28 @@ # PORTNAME= c2lib -PORTVERSION= 1.4.1 -PORTREVISION= 0 -PORTEPOCH= 0 +PORTVERSION= 1.4.2 CATEGORIES= devel MASTER_SITES= http://www.annexia.org/freeware/${PORTNAME}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sergei@kolobov.com COMMENT= Library of basic structures and memory allocators for C -BUILD_DEPENDS+= cdoc:${.CURDIR}/../../devel/cdoc -BUILD_DEPENDS+= make+:${.CURDIR}/../../devel/makeplus -LIB_DEPENDS+= pcre.0:${.CURDIR}/../../devel/pcre - -USE_GMAKE= yes -PREFIX?= ${LOCALBASE} -MAKE_ENV+= CC="${CC}" -.include +BUILD_DEPENDS= cdoc:${PORTSDIR}/devel/cdoc \ + make+:${PORTSDIR}/devel/makeplus +LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre + +INSTALLS_SHLIB= yes +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} +PLIST_SUB= VERSION=${PORTVERSION} -do-configure: - cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} make+ configure +.include "${.CURDIR}/files/manpages.mk" do-build: - cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} make+ + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} make+ do-install: - cd ${WRKSRC}; ${SETENV} ${MAKE_ENV}\ - make+ install prefix=${PREFIX} manprefix=${PREFIX} - -.include "${FILESDIR}/manpages.mk" -.include + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} make+ install -#EOF +.include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/c2lib/distinfo,v retrieving revision 1.10 diff -u -r1.10 distinfo --- distinfo 2003/02/10 05:14:43 1.10 +++ distinfo 2003/06/11 00:00:04 @@ -1 +1 @@ -MD5 (c2lib-1.4.1.tar.gz) = 72e1e9ba877b6530b7603f14ff777d42 +MD5 (c2lib-1.4.2.tar.gz) = ba49054f196d73d8132d72609d7c453d Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/devel/c2lib/pkg-descr,v retrieving revision 1.1 diff -u -r1.1 pkg-descr --- pkg-descr 2001/02/16 11:07:05 1.1 +++ pkg-descr 2003/06/11 00:00:04 @@ -1,5 +1,10 @@ -c2lib is a library of basic structures and memory allocators for C. -It is designed to look similar to C++ STL with many powerful string -features borrowed also from Perl. +c2lib is a library of basic tools for use by C programmers. +It contains a pool allocator, many string functions, STL-like +vector and hash types and miscellaneous utilities. -WWW: http://www.annexia.org/freeware/c2lib/ +Its features were heavily influenced by both Perl's string handling +and C++'s Standard Template Library (STL). The library has been designed +to be very easy to use and is fully documented in manual pages. + +Author: Richard W.M. Jones +WWW: http://www.annexia.org/freeware/c2lib/ Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/c2lib/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- pkg-plist 2003/02/10 23:46:13 1.4 +++ pkg-plist 2003/06/11 00:00:04 @@ -5,11 +5,11 @@ include/c2lib/pstring.h include/c2lib/tree.h include/c2lib/vector.h +@dirrm include/c2lib lib/libc2lib.a lib/libc2lib.so lib/libc2lib.so.1 -lib/libc2lib.so.1.4.1 +lib/libc2lib.so.%%VERSION%% share/rws/symtabs/libc2lib.syms -@dirrm share/rws/symtabs -@dirrm share/rws -@dirrm include/c2lib +@unexec rmdir share/rws/symtabs 2>/dev/null || true +@unexec rmdir share/rws 2>/dev/null || true --- c2lib-1.4.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: