mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Unbreak build
- Trim Makefile header Reported by: pointyhat Approved by: portmgr / mentor (miwi)
This commit is contained in:
parent
96730c894d
commit
b6615d025a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=315671
5 changed files with 80 additions and 7 deletions
|
@ -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
|
||||
|
||||
|
|
10
www/anyterm/files/patch-libpbe-src-SmtpClient.cc
Normal file
10
www/anyterm/files/patch-libpbe-src-SmtpClient.cc
Normal file
|
@ -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?
|
28
www/anyterm/files/patch-libpbe-src-URI.cc
Normal file
28
www/anyterm/files/patch-libpbe-src-URI.cc
Normal file
|
@ -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 {
|
10
www/anyterm/files/patch-libpbe-src-ip.cc
Normal file
10
www/anyterm/files/patch-libpbe-src-ip.cc
Normal file
|
@ -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;
|
||||
|
28
www/anyterm/files/patch-libpbe-src-parse_http_request.cc
Normal file
28
www/anyterm/files/patch-libpbe-src-parse_http_request.cc
Normal file
|
@ -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 {
|
Loading…
Add table
Reference in a new issue