1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00

- Fix build with boost 1.60

- Fix LICENSE

PR:		199601
Approved by:	portmgr blanket
This commit is contained in:
Dmitry Marakasov 2016-02-08 11:16:36 +00:00
parent 92f68630aa
commit 0bc4226603
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=408473
3 changed files with 29 additions and 1 deletions

View File

@ -11,7 +11,7 @@ DISTNAME= openscad-${PORTVERSION}.src
MAINTAINER= mr@FreeBSD.org
COMMENT= Programmer's solid 3D CAD modeller
LICENSE= GPLv2
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \

View File

@ -0,0 +1,14 @@
--- src/colormap.h.orig 2015-03-05 16:25:10 UTC
+++ src/colormap.h
@@ -5,9 +5,11 @@
#include <list>
#include "linalg.h"
+#ifndef Q_MOC_RUN
#include <boost/shared_ptr.hpp>
#include <boost/filesystem.hpp>
#include <boost/property_tree/ptree.hpp>
+#endif
namespace fs = boost::filesystem;

View File

@ -0,0 +1,14 @@
--- src/scintillaeditor.h.orig 2015-03-05 20:25:13 UTC
+++ src/scintillaeditor.h
@@ -11,9 +11,11 @@
#include "scadlexer.h"
#include "parsersettings.h"
+#ifndef Q_MOC_RUN
#include <boost/shared_ptr.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
+#endif
class EditorColorScheme
{