From owner-svn-ports-all@FreeBSD.ORG Mon Nov 17 22:11:39 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 751BC7A7; Mon, 17 Nov 2014 22:11:39 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 61E94DFC; Mon, 17 Nov 2014 22:11:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAHMBdJ4008187; Mon, 17 Nov 2014 22:11:39 GMT (envelope-from tj@FreeBSD.org) Received: (from tj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAHMBcN5008182; Mon, 17 Nov 2014 22:11:38 GMT (envelope-from tj@FreeBSD.org) Message-Id: <201411172211.sAHMBcN5008182@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tj set sender to tj@FreeBSD.org using -f From: Tom Judge Date: Mon, 17 Nov 2014 22:11:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372694 - in head/devel: . sigar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Nov 2014 22:11:39 -0000 Author: tj Date: Mon Nov 17 22:11:37 2014 New Revision: 372694 URL: https://svnweb.freebsd.org/changeset/ports/372694 QAT: https://qat.redports.org/buildarchive/r372694/ Log: The Sigar API provides a portable interface for gathering system information such as: * System memory, swap, cpu, load average, uptime, loginsi * Per-process memory, cpu, credential info, state, arguments, environment, open files * File system detection and metrics * Network interface detection, configuration info and metrics * TCP and UDP connection tables * Network route table This information is available in most operating systems, but each OS has their own way(s) providing it. SIGAR provides developers with one API to access this information regardless of the underlying platform. The core API is implemented in pure C with bindings currently implemented for Java, Perl, Ruby, Python, Erlang, PHP and C#. WWW: https://support.hyperic.com/display/SIGAR/Home Added: head/devel/sigar/ head/devel/sigar/Makefile (contents, props changed) head/devel/sigar/distinfo (contents, props changed) head/devel/sigar/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Nov 17 21:45:00 2014 (r372693) +++ head/devel/Makefile Mon Nov 17 22:11:37 2014 (r372694) @@ -4654,6 +4654,7 @@ SUBDIR += shmap SUBDIR += shtk SUBDIR += shtool + SUBDIR += sigar SUBDIR += sigslot SUBDIR += silc-toolkit SUBDIR += silentbob Added: head/devel/sigar/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sigar/Makefile Mon Nov 17 22:11:37 2014 (r372694) @@ -0,0 +1,28 @@ +# Created by: Tom Judge +# $FreeBSD$ + +PORTNAME= sigar +PORTVERSION= 1.7.3 +CATEGORIES= devel +MASTER_SITES= GH + +MAINTAINER= tj@FreeBSD.org +COMMENT= Sigar system information API + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/NOTICE + +USE_GITHUB= yes +GH_ACCOUNT= amishHammer +GH_COMMIT= b5af695 +GH_TAGNAME= ${GH_COMMIT} + +WRKSRC= ${WRKDIR}/amishHammer-sigar-${GH_COMMIT} +GNU_CONFIGURE= yes +USE_AUTOTOOLS= autoconf automake aclocal libtoolize +USES= libtool pkgconfig + +run-autotools: + @(cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${SH} ./autogen.sh) + +.include Added: head/devel/sigar/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sigar/distinfo Mon Nov 17 22:11:37 2014 (r372694) @@ -0,0 +1,2 @@ +SHA256 (sigar-1.7.3.tar.gz) = 0a4ac4c53718d01f3d879e1b4630b4fbf88485b6d4f5b1180a46571c42b3f255 +SIZE (sigar-1.7.3.tar.gz) = 1091801 Added: head/devel/sigar/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sigar/pkg-descr Mon Nov 17 22:11:37 2014 (r372694) @@ -0,0 +1,18 @@ +The Sigar API provides a portable interface for gathering system information +such as: + +* System memory, swap, cpu, load average, uptime, loginsi +* Per-process memory, cpu, credential info, state, arguments, environment, + open files +* File system detection and metrics +* Network interface detection, configuration info and metrics +* TCP and UDP connection tables +* Network route table + +This information is available in most operating systems, but each OS has their +own way(s) providing it. SIGAR provides developers with one API to access this +information regardless of the underlying platform. The core API is implemented +in pure C with bindings currently implemented for Java, Perl, Ruby, Python, +Erlang, PHP and C#. + +WWW: https://support.hyperic.com/display/SIGAR/Home