svn commit: r315671 - in head/www/anyterm: . files

Armin Pirkovitsch sperber at FreeBSD.org
Tue Apr 2 11:06:57 UTC 2013


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 at 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 <syslog.h>
+ #include <unistd.h>
++#include <stdio.h>
+ 
+ #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 <boost/spirit.hpp>
+-#include <boost/spirit/actor/insert_at_actor.hpp>
+-#include <boost/spirit/dynamic/if.hpp>
+-#include <boost/spirit/utility/loops.hpp>
+-#include <boost/spirit/iterator/multi_pass.hpp>
++#include <boost/spirit/include/classic.hpp>
++#include <boost/spirit/home/classic/actor/insert_at_actor.hpp>
++#include <boost/spirit/home/classic/dynamic/if.hpp>
++#include <boost/spirit/home/classic/utility/loops.hpp>
++#include <boost/spirit/home/classic/iterator/multi_pass.hpp>
+ 
+ #include <boost/lexical_cast.hpp>
+ #include <boost/scoped_array.hpp>
+@@ -30,7 +30,7 @@
+ #include <map>
+ 
+ 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 <sys/un.h>
+ #include <netdb.h>
+ #include <unistd.h>
++#include <string.h>
+ 
+ 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 <boost/spirit.hpp>
+-#include <boost/spirit/actor/insert_at_actor.hpp>
+-#include <boost/spirit/dynamic/if.hpp>
+-#include <boost/spirit/utility/loops.hpp>
+-#include <boost/spirit/iterator/multi_pass.hpp>
++#include <boost/spirit/include/classic.hpp>
++#include <boost/spirit/home/classic/actor/insert_at_actor.hpp>
++#include <boost/spirit/home/classic/dynamic/if.hpp>
++#include <boost/spirit/home/classic/utility/loops.hpp>
++#include <boost/spirit/home/classic/iterator/multi_pass.hpp>
+ 
+ #include <boost/lexical_cast.hpp>
+ #include <boost/scoped_array.hpp>
+@@ -31,7 +31,7 @@
+ 
+ 
+ using namespace std;
+-using namespace boost::spirit;
++using namespace boost::spirit::classic;
+ 
+ 
+ namespace pbe {


More information about the svn-ports-all mailing list