summaryrefslogtreecommitdiff
path: root/libre/luxrays
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2018-08-29 12:39:19 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2018-08-29 12:39:19 -0500
commit096b23e1d0b6ce8efef0fb561f96604aaf2d8e57 (patch)
tree9898a9ea46940636d367b3b7720cdd95b38adfc5 /libre/luxrays
parent951ff68c22fad5876b6aaed359e5675502bb9339 (diff)
downloadabslibre-096b23e1d0b6ce8efef0fb561f96604aaf2d8e57.tar.gz
abslibre-096b23e1d0b6ce8efef0fb561f96604aaf2d8e57.tar.bz2
abslibre-096b23e1d0b6ce8efef0fb561f96604aaf2d8e57.zip
Removing luxrender and luxrays
Diffstat (limited to 'libre/luxrays')
-rw-r--r--libre/luxrays/PKGBUILD59
-rw-r--r--libre/luxrays/force_python3.diff12
2 files changed, 0 insertions, 71 deletions
diff --git a/libre/luxrays/PKGBUILD b/libre/luxrays/PKGBUILD
deleted file mode 100644
index 1445909d4..000000000
--- a/libre/luxrays/PKGBUILD
+++ /dev/null
@@ -1,59 +0,0 @@
-# $Id: PKGBUILD 207920 2017-01-18 20:08:01Z stativ $
-# Maintainer (Arch): Lukas Jirkovsky <l.jirkovsky@gmail.com>
-# Maintainer (Hyperbola): Márcio Silva <coadde@hyperbola.info>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-pkgname='luxrays'
-pkgver=1.6
-_pkgver=61352e6aae3f
-pkgrel=10.parabola1
-pkgdesc="Accelerate the ray intersection process by using GPUs, with opencl-mesa recommendation"
-arch=('x86_64')
-url="http://www.luxrender.net/"
-license=('GPL')
-depends=('embree' 'opencl-icd-loader' 'libgl' 'openimageio')
-makedepends=('boost' 'cmake' 'freetype2' 'gtk3' 'libpng' 'mesa' 'opencl-headers' 'glew' 'freeglut')
-optdepends=('opencl-mesa: OpenCL support for AMD GPUs' \
- 'glew: demos (SmallLuxGPU etc.)' \
- 'gtk3: luxcoreui'
- 'freeglut: demos (SmallLuxGPU etc.)' \
- 'boost-libs: demos (SmallLuxGPU etc.)')
-options=('staticlibs')
-source=($pkgname-$pkgver.tar.bz2::https://bitbucket.org/luxrender/luxrays/get/luxrender_v$pkgver.tar.bz2 \
- force_python3.diff)
-sha256sums=('eb38489e4bcb1336027efc8fa991f506bf78e8cb9edc7b73794e0cdcf998b15a'
- 'e49978fefd61461301acd6054d41aeb625ed11873f85d810fb7cc1f60f94b5bf')
-
-prepare() {
- cd "$srcdir"/luxrender-luxrays-$_pkgver
-
- # force python3 for boost
- patch -Np1 < "$srcdir/force_python3.diff" || true
-}
-
-build() {
- cd "$srcdir/luxrender-luxrays-$_pkgver"
-
- cmake . \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_SKIP_RPATH=ON \
- -DLUXRAYS_DISABLE_OPENCL=OFF
- # this sucks, but luxrays doesn't seem to honor CMAKE_*_LINKER_FLAGS
- # thanks bartus from AUR for the fix
- for file in `grep lboost_python -l -R ` ;do sed -i 's/$/ -lpython3/' $file ; done
- make
-}
-
-package() {
- cd "$srcdir/luxrender-luxrays-$_pkgver"
-
- install -d -m755 "$pkgdir"/usr/{bin,include,lib}
- install -m755 bin/* "$pkgdir"/usr/bin
- install -m644 lib/* "$pkgdir"/usr/lib
- cp -a include "$pkgdir"/usr
-
- # install pyluxcore to the Python search path
- install -d -m755 "$pkgdir"/usr/lib/python3.6/
- mv "$pkgdir"/usr/lib/pyluxcore.so "$pkgdir"/usr/lib/python3.6/
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/libre/luxrays/force_python3.diff b/libre/luxrays/force_python3.diff
deleted file mode 100644
index 9dc09b42f..000000000
--- a/libre/luxrays/force_python3.diff
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rup luxrender-luxrays-61352e6aae3f.orig/cmake/Dependencies.cmake luxrender-luxrays-61352e6aae3f/cmake/Dependencies.cmake
---- luxrender-luxrays-61352e6aae3f.orig/cmake/Dependencies.cmake 2016-05-09 22:17:57.000000000 +0200
-+++ luxrender-luxrays-61352e6aae3f/cmake/Dependencies.cmake 2016-05-29 09:04:30.913648230 +0200
-@@ -58,7 +58,7 @@ set(Boost_MINIMUM_VERSION "1.44.0"
-
- set(Boost_ADDITIONAL_VERSIONS "1.47.0" "1.46.1" "1.46" "1.46.0" "1.45" "1.45.0" "1.44" "1.44.0")
-
--set(LUXRAYS_BOOST_COMPONENTS thread program_options filesystem serialization iostreams regex system python chrono)
-+set(LUXRAYS_BOOST_COMPONENTS thread program_options filesystem serialization iostreams regex system python3 chrono)
- find_package(Boost ${Boost_MINIMUM_VERSION} COMPONENTS ${LUXRAYS_BOOST_COMPONENTS})
- if (NOT Boost_FOUND)
- # Try again with the other type of libs