From owner-svn-ports-head@FreeBSD.ORG Tue Apr 2 11:06:57 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 177DFE56; Tue, 2 Apr 2013 11:06:57 +0000 (UTC) (envelope-from sperber@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id EEE12A18; Tue, 2 Apr 2013 11:06:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r32B6u73061367; Tue, 2 Apr 2013 11:06:56 GMT (envelope-from sperber@svn.freebsd.org) Received: (from sperber@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r32B6uSt061362; Tue, 2 Apr 2013 11:06:56 GMT (envelope-from sperber@svn.freebsd.org) Message-Id: <201304021106.r32B6uSt061362@svn.freebsd.org> From: Armin Pirkovitsch Date: Tue, 2 Apr 2013 11:06:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315671 - in head/www/anyterm: . 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.14 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, 02 Apr 2013 11:06:57 -0000 Author: sperber Date: Tue Apr 2 11:06:55 2013 New Revision: 315671 URL: http://svnweb.freebsd.org/changeset/ports/315671 Log: - Unbreak build - Trim Makefile header Reported by: pointyhat Approved by: portmgr / mentor (miwi) Added: head/www/anyterm/files/patch-libpbe-src-SmtpClient.cc (contents, props changed) head/www/anyterm/files/patch-libpbe-src-URI.cc (contents, props changed) head/www/anyterm/files/patch-libpbe-src-ip.cc (contents, props changed) head/www/anyterm/files/patch-libpbe-src-parse_http_request.cc (contents, props changed) Modified: head/www/anyterm/Makefile (contents, props changed) Modified: head/www/anyterm/Makefile ============================================================================== --- head/www/anyterm/Makefile Tue Apr 2 11:00:04 2013 (r315670) +++ head/www/anyterm/Makefile Tue Apr 2 11:06:55 2013 (r315671) @@ -1,9 +1,5 @@ -# New ports collection makefile for: anyterm -# Date created: 19 November 2009 -# Whom: Douglas Thrift -# +# Created by: Douglas Thrift # $FreeBSD$ -# PORTNAME= anyterm PORTVERSION= 1.1.29 @@ -16,15 +12,16 @@ EXTRACT_SUFX= .tbz2 MAINTAINER= douglas@douglasthrift.net COMMENT= A terminal emulator on a Web page -BUILD_DEPENDS= ${LOCALBASE}/include/boost/function.hpp:${PORTSDIR}/devel/boost-libs - LICENSE= GPLv2 +BUILD_DEPENDS= ${LOCALBASE}/include/boost/function.hpp:${PORTSDIR}/devel/boost-libs + MAN1= anytermd.1 USE_RC_SUBR= anytermd USE_BZIP2= yes USE_GMAKE= yes USE_ICONV= yes +USE_GCC= any ALL_TARGET= default_target PLIST_FILES= sbin/anytermd Added: head/www/anyterm/files/patch-libpbe-src-SmtpClient.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/anyterm/files/patch-libpbe-src-SmtpClient.cc Tue Apr 2 11:06:55 2013 (r315671) @@ -0,0 +1,10 @@ +--- libpbe/src/SmtpClient.cc.orig 2008-05-24 14:24:47.000000000 +0200 ++++ libpbe/src/SmtpClient.cc 2013-03-30 17:41:19.000000000 +0100 +@@ -22,6 +22,7 @@ + + #include + #include ++#include + + #ifdef __OpenBSD__ + // Is this really needed? Added: head/www/anyterm/files/patch-libpbe-src-URI.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/anyterm/files/patch-libpbe-src-URI.cc Tue Apr 2 11:06:55 2013 (r315671) @@ -0,0 +1,28 @@ +--- libpbe/src/URI.cc.orig 2008-11-09 15:16:16.000000000 +0100 ++++ libpbe/src/URI.cc 2013-03-30 17:45:57.000000000 +0100 +@@ -18,11 +18,11 @@ + + #include "URI.hh" + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + + #include + #include +@@ -30,7 +30,7 @@ + #include + + using namespace std; +-using namespace boost::spirit; ++using namespace boost::spirit::classic; + + + namespace pbe { Added: head/www/anyterm/files/patch-libpbe-src-ip.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/anyterm/files/patch-libpbe-src-ip.cc Tue Apr 2 11:06:55 2013 (r315671) @@ -0,0 +1,10 @@ +--- libpbe/src/ip.cc.orig 2008-12-18 21:18:43.000000000 +0100 ++++ libpbe/src/ip.cc 2013-03-30 17:48:22.000000000 +0100 +@@ -23,6 +23,7 @@ + #include + #include + #include ++#include + + using namespace std; + Added: head/www/anyterm/files/patch-libpbe-src-parse_http_request.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/anyterm/files/patch-libpbe-src-parse_http_request.cc Tue Apr 2 11:06:55 2013 (r315671) @@ -0,0 +1,28 @@ +--- libpbe/src/parse_http_request.cc.orig 2013-03-30 16:57:51.000000000 +0100 ++++ libpbe/src/parse_http_request.cc 2013-03-30 17:11:49.000000000 +0100 +@@ -18,11 +18,11 @@ + + #include "parse_http_request.hh" + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + + #include + #include +@@ -31,7 +31,7 @@ + + + using namespace std; +-using namespace boost::spirit; ++using namespace boost::spirit::classic; + + + namespace pbe {