From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 5 23:00:45 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 610B416A494 for ; Fri, 5 Jan 2007 23:00:45 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 46E6513C441 for ; Fri, 5 Jan 2007 23:00:45 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l05N0j6s042041 for ; Fri, 5 Jan 2007 23:00:45 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l05N0jJP042040; Fri, 5 Jan 2007 23:00:45 GMT (envelope-from gnats) Resent-Date: Fri, 5 Jan 2007 23:00:45 GMT Resent-Message-Id: <200701052300.l05N0jJP042040@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, trasz Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74A9816A709 for ; Fri, 5 Jan 2007 22:59:49 +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 1C10013C455 for ; Fri, 5 Jan 2007 22:59:48 +0000 (UTC) (envelope-from trasz@pin.if.uz.zgora.pl) Received: by pin.if.uz.zgora.pl (Postfix, from userid 1001) id EDE0F39DBA; Sat, 6 Jan 2007 00:01:18 +0100 (CET) Message-Id: <20070105230118.EDE0F39DBA@pin.if.uz.zgora.pl> Date: Sat, 6 Jan 2007 00:01:18 +0100 (CET) From: trasz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/107596: [NEW PORT] devel/rlog: A flexible message logging facility for C++ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jan 2007 23:00:45 -0000 >Number: 107596 >Category: ports >Synopsis: [NEW PORT] devel/rlog: A flexible message logging facility for C++ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jan 05 23:00:44 GMT 2007 >Closed-Date: >Last-Modified: >Originator: trasz >Release: FreeBSD 6.1-RELEASE-p10 i386 >Organization: >Environment: System: FreeBSD pin.if.uz.zgora.pl 6.1-RELEASE-p10 FreeBSD 6.1-RELEASE-p10 #0: Wed Nov 15 19:16:30 CET 2006 >Description: RLog provides a flexible message logging facility for C++ programs and libraries. It is subscription based, meaning you can subscribe to messages of your choice in an number of ways: by hierarchical channel name (e.g. "debug", "debug/ special", "error", etc.), or filename, component name, etc. Log messages are individually enabled. It is meant to be fast enough to leave in production code - even where it may be called many times, as both the GCC and Intel compilers reduce the logging overhead a few clock cycles if they are dormant (with no subscribers). Other add-on components can extend subscriptions to external programs, allowing you to enable and collect debugging messages remotely. WWW: http://arg0.net/wiki/rlog Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- rlog-1.3.7.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: # # rlog # rlog/pkg-descr # rlog/Makefile # rlog/pkg-plist # rlog/distinfo # echo c - rlog mkdir -p rlog > /dev/null 2>&1 echo x - rlog/pkg-descr sed 's/^X//' >rlog/pkg-descr << 'END-of-rlog/pkg-descr' XRLog provides a flexible message logging facility for C++ programs Xand libraries. It is subscription based, meaning you can subscribe Xto messages of your choice in an number of ways: by hierarchical Xchannel name (e.g. "debug", "debug/ special", "error", etc.), or Xfilename, component name, etc. Log messages are individually enabled. XIt is meant to be fast enough to leave in production code - even Xwhere it may be called many times, as both the GCC and Intel compilers Xreduce the logging overhead a few clock cycles if they are dormant X(with no subscribers). Other add-on components can extend subscriptions Xto external programs, allowing you to enable and collect debugging Xmessages remotely. X XWWW: http://arg0.net/wiki/rlog END-of-rlog/pkg-descr echo x - rlog/Makefile sed 's/^X//' >rlog/Makefile << 'END-of-rlog/Makefile' X# New ports collection makefile for: rlog X# Date created: 2007-01-05 X# Whom: trasz X# X# $FreeBSD$ X# X XPORTNAME= rlog XPORTVERSION= 1.3.7 XCATEGORIES= devel XMASTER_SITES= http://arg0.net/users/vgough/download/ XEXTRACT_SUFX= .tgz X XMAINTAINER= trasz@pin.if.uz.zgora.pl XCOMMENT= A flexible message logging facility for C++ X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_GNOME= gnomehack XUSE_LDCONFIG= yes X X.include END-of-rlog/Makefile echo x - rlog/pkg-plist sed 's/^X//' >rlog/pkg-plist << 'END-of-rlog/pkg-plist' Xinclude/rlog/common.h Xinclude/rlog/Error.h Xinclude/rlog/Lock.h Xinclude/rlog/Mutex.h Xinclude/rlog/rlog-c99.h Xinclude/rlog/RLogChannel.h Xinclude/rlog/rlog.h Xinclude/rlog/rloginit.h Xinclude/rlog/rloglocation.h Xinclude/rlog/RLogNode.h Xinclude/rlog/rlog-novariadic.h Xinclude/rlog/rlog-prec99.h Xinclude/rlog/RLogPublisher.h Xinclude/rlog/RLogTime.h Xinclude/rlog/StdioNode.h Xinclude/rlog/SyslogNode.h Xlib/librlog.so.4 Xlib/librlog.so Xlib/librlog.la Xlibdata/pkgconfig/librlog.pc X%%DOCSDIR%%/html/1_83_87_2rlog_2common_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2Error_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2Lock_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2Mutex_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2RLogChannel_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2RLogNode_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2RLogPublisher_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2RLogTime_8h-source.html X%%DOCSDIR%%/html/annotated.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2StdioNode_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2SyslogNode_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2rlog-c99_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2rlog-novariadic_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2rlog-prec99_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2rlog_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2rloginit_8h-source.html X%%DOCSDIR%%/html/__darcs_2current_2rlog_2rloglocation_8h-source.html X%%DOCSDIR%%/html/channel.html X%%DOCSDIR%%/html/dirs.html X%%DOCSDIR%%/html/common_8h-source.html X%%DOCSDIR%%/html/component.html X%%DOCSDIR%%/html/config_8h-source.html X%%DOCSDIR%%/html/dir_000000.html X%%DOCSDIR%%/html/dir_000001.html X%%DOCSDIR%%/html/dir_000002.html X%%DOCSDIR%%/html/dir_000003.html X%%DOCSDIR%%/html/dir_000004.html X%%DOCSDIR%%/html/dir_000005.html X%%DOCSDIR%%/html/doxygen.css X%%DOCSDIR%%/html/doxygen.png X%%DOCSDIR%%/html/files.html X%%DOCSDIR%%/html/functions.html X%%DOCSDIR%%/html/functions_func.html X%%DOCSDIR%%/html/functions_rela.html X%%DOCSDIR%%/html/functions_vars.html X%%DOCSDIR%%/html/group__RLogMacros.html X%%DOCSDIR%%/html/index.html X%%DOCSDIR%%/html/modules.html X%%DOCSDIR%%/html/pages.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2Error_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2Lock_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2Mutex_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2RLogChannel_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2RLogNode_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2RLogPublisher_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2RLogTime_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2StdioNode_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2SyslogNode_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2rlog-c99_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2rlog-novariadic_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2rlog-prec99_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2rlog_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2rloginit_8h-source.html X%%DOCSDIR%%/html/rlog-1_83_87_2rlog_2rloglocation_8h-source.html X%%DOCSDIR%%/html/rlog_2Error_8h-source.html X%%DOCSDIR%%/html/rlog_2Lock_8h-source.html X%%DOCSDIR%%/html/rlog_2Mutex_8h-source.html X%%DOCSDIR%%/html/rlog_2RLogChannel_8h-source.html X%%DOCSDIR%%/html/rlog_2rlog_8h-source.html X%%DOCSDIR%%/html/rlog_2RLogNode_8h-source.html X%%DOCSDIR%%/html/rlog_2RLogPublisher_8h-source.html X%%DOCSDIR%%/html/rlog_2RLogTime_8h-source.html X%%DOCSDIR%%/html/rlog_2StdioNode_8h-source.html X%%DOCSDIR%%/html/rlog_2SyslogNode_8h-source.html X%%DOCSDIR%%/html/rlog_2rlog-c99_8h-source.html X%%DOCSDIR%%/html/rlog_2rlog-novariadic_8h-source.html X%%DOCSDIR%%/html/rlog_2rlog-prec99_8h-source.html X%%DOCSDIR%%/html/rlog_2rloginit_8h-source.html X%%DOCSDIR%%/html/rlog_2rloglocation_8h-source.html X%%DOCSDIR%%/refman.pdf X@dirrm %%DOCSDIR%%/html X@dirrm %%DOCSDIR%% X@dirrmtry lib/pkgconfig X@dirrm include/rlog END-of-rlog/pkg-plist echo x - rlog/distinfo sed 's/^X//' >rlog/distinfo << 'END-of-rlog/distinfo' XMD5 (rlog-1.3.7.tgz) = b84df0d8a57ea676c4bf594c7a35cd25 XSHA256 (rlog-1.3.7.tgz) = e398ce16d0370d9a72968f9ee38d33d0bc3b3b54c9a49645c8141109098fff44 XSIZE (rlog-1.3.7.tgz) = 525396 END-of-rlog/distinfo exit --- rlog-1.3.7.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: