From owner-svn-ports-head@FreeBSD.ORG Thu Feb 20 17:42:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 337D5A31; Thu, 20 Feb 2014 17:42:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E84D1AF4; Thu, 20 Feb 2014 17:42:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1KHgCCS070594; Thu, 20 Feb 2014 17:42:12 GMT (envelope-from brd@svn.freebsd.org) Received: (from brd@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1KHgCue070588; Thu, 20 Feb 2014 17:42:12 GMT (envelope-from brd@svn.freebsd.org) Message-Id: <201402201742.s1KHgCue070588@svn.freebsd.org> From: Brad Davis Date: Thu, 20 Feb 2014 17:42:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345255 - in head: . devel/liblogging sysutils/liblogging X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 17:42:13 -0000 Author: brd (doc committer) Date: Thu Feb 20 17:42:11 2014 New Revision: 345255 URL: http://svnweb.freebsd.org/changeset/ports/345255 QAT: https://qat.redports.org/buildarchive/r345255/ Log: - Fix a duplicate LATEST_LINK by removing sysutils/liblogging and reviving devel/liblogging Reviewed by: tj@ Deleted: head/sysutils/liblogging/ Modified: head/MOVED head/devel/liblogging/Makefile head/devel/liblogging/distinfo head/devel/liblogging/pkg-descr head/devel/liblogging/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Thu Feb 20 17:07:02 2014 (r345254) +++ head/MOVED Thu Feb 20 17:42:11 2014 (r345255) @@ -5473,3 +5473,4 @@ textproc/docbook-xml-450|textproc/docboo textproc/docbook-500|textproc/docbook-xml|2014-02-19|Merged into textproc/docbook-xml textproc/docbook-sk|textproc/docbook-xml|2014-02-19|Merged into textproc/docbook-xml emulators/ski||2014-02-19|Removed, does not exist on HP's site anymore +sysutils/liblogging|devel/liblogging|2014-02-20|Already exists as devel/liblogging Modified: head/devel/liblogging/Makefile ============================================================================== --- head/devel/liblogging/Makefile Thu Feb 20 17:07:02 2014 (r345254) +++ head/devel/liblogging/Makefile Thu Feb 20 17:42:11 2014 (r345255) @@ -2,19 +2,19 @@ # $FreeBSD$ PORTNAME= liblogging -PORTVERSION= 0.7.1 +PORTVERSION= 1.0.1 CATEGORIES= devel -MASTER_SITES= CENKES http://download.rsyslog.com/liblogging/ +MASTER_SITES= http://download.rsyslog.com/liblogging/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= brd@FreeBSD.org COMMENT= Easy to use system logging library -USE_LDCONFIG= yes +LICENSE= BSD2CLAUSE + GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-static +USES= libtool pathfix -post-patch: - @${REINPLACE_CMD} -e '/^pkgconfigdir =/s|=.*| \ - = ${PREFIX}/libdata/pkgconfig|' ${WRKSRC}/Makefile.in +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblogging-stdlog.so.0.0.0 .include Modified: head/devel/liblogging/distinfo ============================================================================== --- head/devel/liblogging/distinfo Thu Feb 20 17:07:02 2014 (r345254) +++ head/devel/liblogging/distinfo Thu Feb 20 17:42:11 2014 (r345255) @@ -1,2 +1,2 @@ -SHA256 (liblogging-0.7.1.tar.gz) = 2c3aaf6b5e8d2240d3db43781f7f13d1691f31083c8d4274285ef38fdef5dbbc -SIZE (liblogging-0.7.1.tar.gz) = 525925 +SHA256 (liblogging-1.0.1.tar.gz) = 99d09101cc3c22e2388fe2a817bb1c6f5fe2275623aadb94a49d1c2259102bfa +SIZE (liblogging-1.0.1.tar.gz) = 524168 Modified: head/devel/liblogging/pkg-descr ============================================================================== --- head/devel/liblogging/pkg-descr Thu Feb 20 17:07:02 2014 (r345254) +++ head/devel/liblogging/pkg-descr Thu Feb 20 17:42:11 2014 (r345255) @@ -1,4 +1,8 @@ -Liblogging is an easy to use, portable, open source library for -system logging. +Liblogging offers an enhanced replacement for the syslog() call, but +retains its ease of use. In a nutshell, it permits sytem administrators +to direct application log output to different destinations without +requiring the app developer to do any work for this. Liblogging is +released under a 2-clause BSD license and as such can be used in any +application. WWW: http://www.liblogging.org/ Modified: head/devel/liblogging/pkg-plist ============================================================================== --- head/devel/liblogging/pkg-plist Thu Feb 20 17:07:02 2014 (r345254) +++ head/devel/liblogging/pkg-plist Thu Feb 20 17:42:11 2014 (r345255) @@ -1,9 +1,8 @@ -include/liblogging/liblogging.h -include/liblogging/settings.h -include/liblogging/srAPI.h -include/liblogging/syslogmessage.h -lib/liblogging.la -lib/liblogging.so -lib/liblogging.so.0 -libdata/pkgconfig/liblogging.pc +include/liblogging/stdlog.h +lib/liblogging-stdlog.a +lib/liblogging-stdlog.la +lib/liblogging-stdlog.so +lib/liblogging-stdlog.so.0 +lib/liblogging-stdlog.so.0.0.0 +libdata/pkgconfig/liblogging-stdlog.pc @dirrm include/liblogging