From owner-svn-ports-head@FreeBSD.ORG Tue Feb 4 19:10:51 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 EAAA9817; Tue, 4 Feb 2014 19:10:51 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D3C651F94; Tue, 4 Feb 2014 19:10:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s14JApob012879; Tue, 4 Feb 2014 19:10:51 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s14JApMk012877; Tue, 4 Feb 2014 19:10:51 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201402041910.s14JApMk012877@svn.freebsd.org> From: Pawel Pekala Date: Tue, 4 Feb 2014 19:10:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342590 - in head/print/ansiprint: . files 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.17 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: Tue, 04 Feb 2014 19:10:52 -0000 Author: pawel Date: Tue Feb 4 19:10:51 2014 New Revision: 342590 URL: http://svnweb.freebsd.org/changeset/ports/342590 QAT: https://qat.redports.org/buildarchive/r342590/ Log: - Fix build with clang [1] - Support stage PR: ports/182043 [1] Submitted by: maintainer MFH: 2014Q1 Added: head/print/ansiprint/files/ head/print/ansiprint/files/patch-ansiprint.cc (contents, props changed) Modified: head/print/ansiprint/Makefile Modified: head/print/ansiprint/Makefile ============================================================================== --- head/print/ansiprint/Makefile Tue Feb 4 19:04:17 2014 (r342589) +++ head/print/ansiprint/Makefile Tue Feb 4 19:10:51 2014 (r342590) @@ -14,7 +14,6 @@ PLIST_FILES= bin/${PORTNAME} CXXFLAGS+= -Wno-deprecated -NO_STAGE= yes post-extract: @${RM} ${WRKSRC}/Makefile @@ -22,6 +21,6 @@ do-build: cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -o ${PORTNAME} ansiprint.cc do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include Added: head/print/ansiprint/files/patch-ansiprint.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/ansiprint/files/patch-ansiprint.cc Tue Feb 4 19:10:51 2014 (r342590) @@ -0,0 +1,18 @@ +--- ./ansiprint.cc.orig 2014-02-04 20:01:43.741062023 +0100 ++++ ./ansiprint.cc 2014-02-04 20:02:11.131060123 +0100 +@@ -36,13 +36,14 @@ + #undef NOPRINT + + // INCLUDES +-#include ++#include + #include // Check to be sure we need this + #include + // below are the includes for raw I/O + #include + #include + ++using namespace std; + + /***** GLOBAL VARIABLE DECLARATIONS *****/ +