From owner-svn-ports-head@FreeBSD.ORG Thu Aug 21 17:12:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D278F7E; Thu, 21 Aug 2014 17:12:31 +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 88AF43EAD; Thu, 21 Aug 2014 17:12:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7LHCVNO077661; Thu, 21 Aug 2014 17:12:31 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7LHCV0T077660; Thu, 21 Aug 2014 17:12:31 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201408211712.s7LHCV0T077660@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 21 Aug 2014 17:12:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365570 - head/print/ansiprint 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-1 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, 21 Aug 2014 17:12:31 -0000 Author: marino Date: Thu Aug 21 17:12:31 2014 New Revision: 365570 URL: http://svnweb.freebsd.org/changeset/ports/365570 QAT: https://qat.redports.org/buildarchive/r365570/ Log: Reset maintainer print/ansiprint per his request Thanks for looking after this port, Stephen. While here, I'll make some cosmetic realignments and convert EXTRACT_SUFX to USES. PR: 192891 Submitted by: maintainer (Stephen Fisher) Modified: head/print/ansiprint/Makefile Modified: head/print/ansiprint/Makefile ============================================================================== --- head/print/ansiprint/Makefile Thu Aug 21 17:09:58 2014 (r365569) +++ head/print/ansiprint/Makefile Thu Aug 21 17:12:31 2014 (r365570) @@ -1,18 +1,17 @@ # Created by: Stephen Fisher # $FreeBSD$ -PORTNAME= ansiprint -PORTVERSION= 1.0 -CATEGORIES= print -MASTER_SITES= SF -EXTRACT_SUFX= .tgz - -MAINTAINER= stephenfisher@outlook.com -COMMENT= Prints through a terminal with ANSI escape sequences - -PLIST_FILES= bin/${PORTNAME} - -CXXFLAGS+= -Wno-deprecated +PORTNAME= ansiprint +PORTVERSION= 1.0 +CATEGORIES= print +MASTER_SITES= SF + +MAINTAINER= ports@FreeBSD.org +COMMENT= Prints through a terminal with ANSI escape sequences + +USES= tar:tgz +PLIST_FILES= bin/${PORTNAME} +CXXFLAGS+= -Wno-deprecated post-extract: @${RM} ${WRKSRC}/Makefile @@ -21,6 +20,7 @@ do-build: cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -o ${PORTNAME} ansiprint.cc do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include