summaryrefslogtreecommitdiff
path: root/pcr/lv2-c++-tools
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/lv2-c++-tools')
-rw-r--r--pcr/lv2-c++-tools/PKGBUILD33
-rw-r--r--pcr/lv2-c++-tools/lv2-c++-tools-boost-1.50.patch42
2 files changed, 0 insertions, 75 deletions
diff --git a/pcr/lv2-c++-tools/PKGBUILD b/pcr/lv2-c++-tools/PKGBUILD
deleted file mode 100644
index de2e69578..000000000
--- a/pcr/lv2-c++-tools/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# Maintainer : Guest One <theguestone at gmail dot com>
-# patch taken from https://aur.archlinux.org/packages/lv2-c%2B%2B-tools/
-pkgname=lv2-c++-tools
-pkgver=1.0.4
-pkgrel=1
-pkgdesc="Tools and libraries that may come in handy when writing LV2 plugins."
-arch=('i686')
-url="http://ll-plugins.nongnu.org/hacking.html"
-license=('GPL3')
-depends=('gtkmm')
-makedepends=('boost')
-source=("http://download.savannah.nongnu.org/releases-noredirect/ll-plugins/$pkgname-$pkgver.tar.bz2"
- "$pkgname-boost-1.50.patch")
-md5sums=('2468f8750bae1d57300853479846e5ed'
- '1dd1152e9ab8be15248b54546716c8c9')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # boots 1.50 patch
- patch -p1 -i ../${source[1]}
-
- # do not call ldconfig
- sed -i '/ldconfig/d' Makefile.template
-
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-} \ No newline at end of file
diff --git a/pcr/lv2-c++-tools/lv2-c++-tools-boost-1.50.patch b/pcr/lv2-c++-tools/lv2-c++-tools-boost-1.50.patch
deleted file mode 100644
index 85d3e32da..000000000
--- a/pcr/lv2-c++-tools/lv2-c++-tools-boost-1.50.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -aur lv2-c++-tools-1.0.4/libraries/paq/turtleparser.cpp lv2-c++-tools-1.0.4.patched/libraries/paq/turtleparser.cpp
---- lv2-c++-tools-1.0.4/libraries/paq/turtleparser.cpp 2011-02-27 13:34:39.000000000 +0100
-+++ lv2-c++-tools-1.0.4.patched/libraries/paq/turtleparser.cpp 2012-09-27 16:41:39.925303056 +0200
-@@ -28,7 +28,7 @@
- #include <fcntl.h>
- #include <unistd.h>
-
--#include <boost/spirit/dynamic.hpp>
-+#include <boost/spirit/include/classic_dynamic.hpp>
-
- #include "turtleparser.hpp"
-
-diff -aur lv2-c++-tools-1.0.4/libraries/paq/turtleparser.hpp lv2-c++-tools-1.0.4.patched/libraries/paq/turtleparser.hpp
---- lv2-c++-tools-1.0.4/libraries/paq/turtleparser.hpp 2011-02-27 13:34:39.000000000 +0100
-+++ lv2-c++-tools-1.0.4.patched/libraries/paq/turtleparser.hpp 2012-09-27 16:41:39.925303056 +0200
-@@ -23,10 +23,10 @@
- #ifndef TURTLEPARSER_HPP
- #define TURTLEPARSER_HPP
-
--#include <boost/spirit/core.hpp>
--#include <boost/spirit/utility.hpp>
--#include <boost/spirit/tree/parse_tree.hpp>
--#include <boost/spirit/tree/ast.hpp>
-+#include <boost/spirit/include/classic_core.hpp>
-+#include <boost/spirit/include/classic_utility.hpp>
-+#include <boost/spirit/include/classic_parse_tree.hpp>
-+#include <boost/spirit/include/classic_ast.hpp>
-
- #include <algorithm>
- #include <iostream>
-diff -aur lv2-c++-tools-1.0.4/libraries/paq/unicode.hpp lv2-c++-tools-1.0.4.patched/libraries/paq/unicode.hpp
---- lv2-c++-tools-1.0.4/libraries/paq/unicode.hpp 2011-02-27 13:34:39.000000000 +0100
-+++ lv2-c++-tools-1.0.4.patched/libraries/paq/unicode.hpp 2012-09-27 16:42:00.818959807 +0200
-@@ -29,7 +29,7 @@
-
-
- using namespace std;
--using namespace boost::spirit;
-+using namespace boost::spirit::classic;
-
-
- template <typename ScannerT>