opengtl removed from our repo, no longer updated upstream

This commit is contained in:
AlmAck 2015-01-18 21:03:31 +01:00
parent d81f6fdc67
commit feed9794d1
4 changed files with 0 additions and 1117 deletions

View File

@ -1,26 +0,0 @@
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=libqtgtl
pkgver=0.9.3
pkgrel=2
pkgdesc="Qt bindings to OpenGTL"
url="http://www.opengtl.org"
arch=('i686' 'x86_64')
depends=('llvm' 'opengtl' 'qt')
license=('GPL')
makedepends=('cmake')
source=(http://download.opengtl.org/libQtGTL-${pkgver}.tar.bz2)
md5sums=('1e9fd96332db22da01ab6d83568e396e')
build() {
cd $srcdir
mkdir build
cd $srcdir/build
cmake $srcdir/libQtGTL-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd $srcdir/build
make DESTDIR=${pkgdir} install
rm -r $srcdir/build
}

View File

@ -1,39 +0,0 @@
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
# contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/opengtl/
pkgname=opengtl
pkgver=0.9.18
pkgrel=4
pkgdesc="A set of library for using and integrating transformation algorithms (such as filter or color conversion) in graphics applications"
url="http://www.opengtl.org"
arch=('x86_64')
license=('GPL')
depends=('gcc-libs' 'llvm')
makedepends=('cmake' 'libpng')
optdepends=('libpng: for using the png extension')
source=("http://download.opengtl.org/OpenGTL-${pkgver}.tar.bz2"
"opengtl-0.9.18-llvm-3.4.1.patch"
"opengtl-0.9.18-memcpy.patch")
sha256sums=('f094b3d2a1a60519975bb3badc05e704f2b93c7a3d2cb753041f2ff27cfcd9f8'
'83df283425e59b8f883bab2ba6b477f85629e4dcc85dc5098939407e74db0b04'
'934f2d3b0452b0505d0b4a39f2f9022ea490be12eda77d46caf0d66eabef59f3')
prepare() {
patch -d OpenGTL-$pkgver -Np1 -i "$srcdir/opengtl-0.9.18-memcpy.patch"
# Fix build with LLVM 3.4 (patch from Rosa https://abf.rosalinux.ru/openmandriva/opengtl/)
patch -d OpenGTL-$pkgver -Np1 -i "$srcdir/opengtl-0.9.18-llvm-3.4.1.patch"
}
build() {
mkdir -p build && cd build
cmake ../OpenGTL-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +0,0 @@
diff -r 99a2017746c0 Extensions/PngDC/PngDC.cpp
--- a/Extensions/PngDC/PngDC.cpp Wed Jan 30 05:28:12 2013 +1100
+++ b/Extensions/PngDC/PngDC.cpp Tue Apr 16 01:59:10 2013 +1000
@@ -20,6 +20,7 @@
#include "PngDC.h"
#include <png.h>
+#include <string.h>
#include <config-endian.h>