From owner-svn-ports-all@FreeBSD.ORG Sun Oct 6 06:45:46 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTP id 60D84AE1; Sun, 6 Oct 2013 06:45:46 +0000 (UTC) (envelope-from lippe@FreeBSD.org) 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 3E0D32A3C; Sun, 6 Oct 2013 06:45:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r966jkiI047920; Sun, 6 Oct 2013 06:45:46 GMT (envelope-from lippe@svn.freebsd.org) Received: (from lippe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r966jjpX047913; Sun, 6 Oct 2013 06:45:45 GMT (envelope-from lippe@svn.freebsd.org) Message-Id: <201310060645.r966jjpX047913@svn.freebsd.org> From: Felippe de Meirelles Motta Date: Sun, 6 Oct 2013 06:45:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329536 - in head/sysutils: . graffer 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.14 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: Sun, 06 Oct 2013 06:45:46 -0000 Author: lippe Date: Sun Oct 6 06:45:45 2013 New Revision: 329536 URL: http://svnweb.freebsd.org/changeset/ports/329536 Log: Graffer is a small utility that collects numeric values from external programs and produces graphs like mrtg, pfstat or alike. WWW: http://chaosophia.net/graffer/ PR: ports/177584 Submitted by: Nikola Kolev Added: head/sysutils/graffer/ head/sysutils/graffer/Makefile (contents, props changed) head/sysutils/graffer/distinfo (contents, props changed) head/sysutils/graffer/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Oct 6 06:40:52 2013 (r329535) +++ head/sysutils/Makefile Sun Oct 6 06:45:45 2013 (r329536) @@ -344,6 +344,7 @@ SUBDIR += gpart SUBDIR += gpkgdep SUBDIR += gpte + SUBDIR += graffer SUBDIR += graid5 SUBDIR += graphicboot SUBDIR += graveman Added: head/sysutils/graffer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/graffer/Makefile Sun Oct 6 06:45:45 2013 (r329536) @@ -0,0 +1,40 @@ +# Created by: Nikola Kolev +# $FreeBSD$ + +PORTNAME= graffer +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= http://chaosophia.net/downloads/graffer/ \ + http://ns1.chaosophia.net/downloads/graffer/ + +MAINTAINER= koue@chaosophia.net +COMMENT= Utility to render graphical statistics + +LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd + +MAKE_ARGS= "LD_GD=gd" +MAKE_END+= __MAKE_CONF=/dev/null +USE_ICONV= yes + +PLIST_FILES= bin/graffer \ + etc/graffer/graffer.conf.example \ + man/man8/graffer.8.gz +PLIST_DIRS= etc/graffer + +.include + +post-patch: + @${REINPLACE_CMD} -e 's|-lgd|-l$${LD_GD}|; s| -lttf||' \ + ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e "s|/etc/|${STAGEDIR}${PREFIX}/etc/|" \ + ${WRKSRC}/graffer.[c8] + @${REINPLACE_CMD} -e "s|/etc/|${STAGEDIR}${PREFIX}/etc/|" \ + ${WRKSRC}/graffer.conf.example + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/graffer ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/graffer.8 ${STAGEDIR}${PREFIX}/man/man8 + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/graffer + ${INSTALL_DATA} ${WRKSRC}/graffer.conf.example ${STAGEDIR}${PREFIX}/etc/graffer + +.include Added: head/sysutils/graffer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/graffer/distinfo Sun Oct 6 06:45:45 2013 (r329536) @@ -0,0 +1,2 @@ +SHA256 (graffer-1.0.tar.gz) = 2e5a31f0e6a0b62d352795ca5b48cc8e08e91e0a1b3d6c9296f8cdf2aef810ea +SIZE (graffer-1.0.tar.gz) = 15900 Added: head/sysutils/graffer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/graffer/pkg-descr Sun Oct 6 06:45:45 2013 (r329536) @@ -0,0 +1,4 @@ +Graffer is a small utility that collects numeric values from external programs +and produces graphs like mrtg, pfstat or alike. + +WWW: http://chaosophia.net/graffer/