From owner-svn-ports-head@FreeBSD.ORG Sun May 11 14:26:58 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 304E9579; Sun, 11 May 2014 14:26:58 +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 1D7092722; Sun, 11 May 2014 14:26:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4BEQvC6006084; Sun, 11 May 2014 14:26:57 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4BEQvLl006083; Sun, 11 May 2014 14:26:57 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201405111426.s4BEQvLl006083@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 11 May 2014 14:26:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353700 - head/sysutils/py-glances 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.18 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: Sun, 11 May 2014 14:26:58 -0000 Author: sunpoet Date: Sun May 11 14:26:57 2014 New Revision: 353700 URL: http://svnweb.freebsd.org/changeset/ports/353700 QAT: https://qat.redports.org/buildarchive/r353700/ Log: - Remove MANPAGES option: install manpage unconditionally - Remove duplicate PLIST entry (bin/glances) - Bump PORTREVISION for package change Submitted by: sunpoet (myself) Approved by: Gasol Wu (maintainer) Modified: head/sysutils/py-glances/Makefile Modified: head/sysutils/py-glances/Makefile ============================================================================== --- head/sysutils/py-glances/Makefile Sun May 11 14:26:52 2014 (r353699) +++ head/sysutils/py-glances/Makefile Sun May 11 14:26:57 2014 (r353700) @@ -3,6 +3,7 @@ PORTNAME= glances PORTVERSION= 1.7.6 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= https://github.com/nicolargo/glances/archive/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +17,7 @@ LICENSE= LGPL3 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.0.0:${PORTSDIR}/devel/py-Jinja2 \ ${PYTHON_PKGNAMEPREFIX}psutil>=2.0.0:${PORTSDIR}/sysutils/py-psutil -OPTIONS_DEFINE= DOCS MANPAGES NLS +OPTIONS_DEFINE= DOCS NLS OPTIONS_SUB= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} @@ -24,9 +25,8 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes PYDISTUTILS_AUTOPLIST= yes -PLIST_FILES= bin/glances \ - %%ETCDIR%%/glances.conf.sample \ - %%MANPAGES%%man/man1/glances.1.gz \ +PLIST_FILES= %%ETCDIR%%/glances.conf.sample \ + man/man1/glances.1.gz \ %%NLS%%share/locale/es/LC_MESSAGES/glances.mo \ %%NLS%%share/locale/fr/LC_MESSAGES/glances.mo \ %%NLS%%share/locale/it/LC_MESSAGES/glances.mo \