From owner-svn-ports-all@freebsd.org Mon Dec 14 15:17:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9632FA43FFB; Mon, 14 Dec 2015 15:17:36 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 678CB1B3C; Mon, 14 Dec 2015 15:17:36 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBEFHZcC027282; Mon, 14 Dec 2015 15:17:35 GMT (envelope-from tdb@FreeBSD.org) Received: (from tdb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBEFHZfn027281; Mon, 14 Dec 2015 15:17:35 GMT (envelope-from tdb@FreeBSD.org) Message-Id: <201512141517.tBEFHZfn027281@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tdb set sender to tdb@FreeBSD.org using -f From: Tim Bishop Date: Mon, 14 Dec 2015 15:17:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403727 - head/devel/libstatgrab 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.20 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, 14 Dec 2015 15:17:36 -0000 Author: tdb Date: Mon Dec 14 15:17:35 2015 New Revision: 403727 URL: https://svnweb.freebsd.org/changeset/ports/403727 Log: - Convert to option helper variables - Add LICENSE PR: 205314 Submitted by: tgyurci@gmail.com Modified: head/devel/libstatgrab/Makefile Modified: head/devel/libstatgrab/Makefile ============================================================================== --- head/devel/libstatgrab/Makefile Mon Dec 14 14:51:10 2015 (r403726) +++ head/devel/libstatgrab/Makefile Mon Dec 14 15:17:35 2015 (r403727) @@ -11,6 +11,8 @@ MASTER_SITES= http://ftp.mirrorservice.o MAINTAINER= tdb@FreeBSD.org COMMENT= Provides a useful interface to system statistics +LICENSE= LGPL21 + USE_LDCONFIG= yes GNU_CONFIGURE= yes USES= pathfix pkgconfig libtool @@ -21,17 +23,12 @@ OPTIONS_DEFINE= TOOLS DOCS OPTIONS_DEFAULT= TOOLS TOOLS_DESC= Build and install statgrab and saidar +TOOLS_CONFIGURE_ENABLE= statgrab saidar +TOOLS_USES= shebangfix perl5 +TOOLS_VARS= SHEBANG_FILES+="src/statgrab/statgrab-make-mrtg-config.in \ + src/statgrab/statgrab-make-mrtg-index.in" \ + LICENSE+=GPLv2 LICENSE_COMB=multi OPTIONS_SUB= yes -.include - -.if ${PORT_OPTIONS:MTOOLS} -USES+= shebangfix perl5 -SHEBANG_FILES= src/statgrab/statgrab-make-mrtg-config.in \ - src/statgrab/statgrab-make-mrtg-index.in -.else -CONFIGURE_ARGS+= --disable-statgrab --disable-saidar -.endif - .include