summaryrefslogtreecommitdiff
path: root/devel/qross
diff options
context:
space:
mode:
Diffstat (limited to 'devel/qross')
-rw-r--r--devel/qross/Makefile43
-rw-r--r--devel/qross/distinfo2
-rw-r--r--devel/qross/files/CMakeLists.txt9
-rw-r--r--devel/qross/files/patch-bindings__python__qrosspython__CMakeLists.txt28
-rw-r--r--devel/qross/files/patch-bindings_python_qrosspython_cxx_Objects.hxx16
-rw-r--r--devel/qross/pkg-descr3
-rw-r--r--devel/qross/pkg-plist28
7 files changed, 0 insertions, 129 deletions
diff --git a/devel/qross/Makefile b/devel/qross/Makefile
deleted file mode 100644
index caee1320c178..000000000000
--- a/devel/qross/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= qross
-PORTVERSION= 0.3.1
-PORTREVISION= 3
-CATEGORIES= devel
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Qt-only fork of Kross, the KDE scripting framework
-
-LICENSE= LGPL20+
-
-DEPRECATED= Qt4 has been EOL since december 2015
-EXPIRATION_DATE= 2019-03-15
-
-USES= cmake qt:4
-USE_LDCONFIG= yes
-USE_QT= corelib designer gui network xml qmake_build uic_build moc_build \
- rcc_build script testlib
-USE_GITHUB= yes
-GH_ACCOUNT= 0xd34df00d
-GH_PROJECT= Qross
-
-WRKSRC_SUBDIR= src
-
-OPTIONS_DEFINE= PYTHON
-OPTIONS_SUB= yes
-PYTHON_DESC= Python bindings
-PYTHON_CMAKE_BOOL= ENABLE_PYTHON
-PYTHON_BUILD_DEPENDS= ${PYTHON_INCLUDEDIR}/sip.h:devel/py-sip@${PY_FLAVOR}
-PYTHON_USES= python:2.7
-OPTIONS_DEFAULT=PYTHON
-
-post-extract:
- @${CP} ${FILESDIR}/CMakeLists.txt ${WRKSRC}
-
-post-install:
-.for lib in libqrossui libqrosscore qrossqts
- @${LN} -s ${lib}.so.0.1 ${STAGEDIR}${PREFIX}/lib/${lib}.so.1
-.endfor
-
-.include <bsd.port.mk>
diff --git a/devel/qross/distinfo b/devel/qross/distinfo
deleted file mode 100644
index 472d8e8525e3..000000000000
--- a/devel/qross/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (0xd34df00d-Qross-0.3.1_GH0.tar.gz) = 0573ece8c78fc836544a87adbb3a61afb1b8821cc11b289935d4b650c2d6bc85
-SIZE (0xd34df00d-Qross-0.3.1_GH0.tar.gz) = 3963408
diff --git a/devel/qross/files/CMakeLists.txt b/devel/qross/files/CMakeLists.txt
deleted file mode 100644
index 3bd62cb90abd..000000000000
--- a/devel/qross/files/CMakeLists.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
-
-OPTION (ENABLE_PYTHON "Python bindings" ON)
-
-ADD_SUBDIRECTORY (qross)
-
-IF (ENABLE_PYTHON)
- ADD_SUBDIRECTORY (bindings/python/qrosspython)
-ENDIF (ENABLE_PYTHON)
diff --git a/devel/qross/files/patch-bindings__python__qrosspython__CMakeLists.txt b/devel/qross/files/patch-bindings__python__qrosspython__CMakeLists.txt
deleted file mode 100644
index 186762f1dc1c..000000000000
--- a/devel/qross/files/patch-bindings__python__qrosspython__CMakeLists.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-From 9053d214840639c3deabb7902a00a37356fdf32e Mon Sep 17 00:00:00 2001
-From: 0xd34df00d <0xd34df00d@gmail.com>
-Date: Fri, 4 Jul 2014 00:54:01 +0400
-Subject: [PATCH] CMake 3.x compatibility in Python bindings.
-
----
- src/bindings/python/qrosspython/CMakeLists.txt | 8 ++++++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/src/bindings/python/qrosspython/CMakeLists.txt b/src/bindings/python/qrosspython/CMakeLists.txt
-index 5bd5b73..e0a0e68 100644
---- bindings/python/qrosspython/CMakeLists.txt
-+++ bindings/python/qrosspython/CMakeLists.txt
-@@ -5,8 +5,12 @@ find_package(Qt4 REQUIRED)
- set(QT_USE_QTTEST TRUE)
- include(${QT_USE_FILE})
-
--set (PythonLibs_FIND_VERSION 2.7)
--find_package(PythonLibs REQUIRED)
-+if (${CMAKE_MAJOR_VERSION} EQUAL 2)
-+ set (PythonLibs_FIND_VERSION 2.7)
-+ find_package(PythonLibs REQUIRED)
-+else ()
-+ find_package(PythonLibs "2.7" REQUIRED)
-+endif ()
-
- include_directories(
- ${PYTHON_INCLUDE_PATH}
diff --git a/devel/qross/files/patch-bindings_python_qrosspython_cxx_Objects.hxx b/devel/qross/files/patch-bindings_python_qrosspython_cxx_Objects.hxx
deleted file mode 100644
index ffbc726d9bf2..000000000000
--- a/devel/qross/files/patch-bindings_python_qrosspython_cxx_Objects.hxx
+++ /dev/null
@@ -1,16 +0,0 @@
-In file included from bindings/python/qrosspython/cxx/cxxsupport.cxx:38:
-bindings/python/qrosspython/cxx/Objects.hxx:1081:15:
- error: cannot initialize a member subobject of type 'int' with an rvalue of type 'nullptr_t'
- , offset( NULL )
-
---- bindings/python/qrosspython/cxx/Objects.hxx.orig 2018-02-18 08:21:27 UTC
-+++ bindings/python/qrosspython/cxx/Objects.hxx
-@@ -1078,7 +1078,7 @@ namespace Py
- // TMM: added this seqref ctor for use with STL algorithms
- seqref (Object& obj)
- : s(dynamic_cast< SeqBase<T>&>(obj))
-- , offset( NULL )
-+ , offset( 0 )
- , the_item(s.getItem(offset))
- {}
- ~seqref()
diff --git a/devel/qross/pkg-descr b/devel/qross/pkg-descr
deleted file mode 100644
index 1f530190e7e3..000000000000
--- a/devel/qross/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-Qross is a Qt-only fork of Kross, the KDE scripting framework.
-
-WWW: https://github.com/0xd34df00d/Qross
diff --git a/devel/qross/pkg-plist b/devel/qross/pkg-plist
deleted file mode 100644
index 0a5b6c0dc26a..000000000000
--- a/devel/qross/pkg-plist
+++ /dev/null
@@ -1,28 +0,0 @@
-bin/qross
-include/qross/core/action.h
-include/qross/core/actioncollection.h
-include/qross/core/childreninterface.h
-include/qross/core/errorinterface.h
-include/qross/core/interpreter.h
-include/qross/core/manager.h
-include/qross/core/metafunction.h
-include/qross/core/metatype.h
-include/qross/core/object.h
-include/qross/core/qross_export.h
-include/qross/core/qrossconfig.h
-include/qross/core/script.h
-include/qross/core/wrapperinterface.h
-include/qross/ui/model.h
-%%PYTHON%%lib/qrosspython.so
-lib/libqrosscore.so
-lib/libqrosscore.so.0.1
-lib/libqrosscore.so.1
-lib/libqrossui.so
-lib/libqrossui.so.0.1
-lib/libqrossui.so.1
-lib/qrossqts.so
-lib/qrossqts.so.1
-lib/qt4/plugins/script/libqrossqtsplugin.so
-lib/qt4/plugins/script/libqrossqtsplugin.so.0.1
-share/cmake/Modules/FindQrosscore.cmake
-share/leechcraft/cmake/FindQrosscore.cmake