[arch-commits] Commit in tachyon/repos (6 files)
Antonio Rojas
arojas at archlinux.org
Thu Jan 8 20:35:18 UTC 2015
Date: Thursday, January 8, 2015 @ 21:35:17
Author: arojas
Revision: 125627
archrelease: copy trunk to community-i686, community-x86_64
Added:
tachyon/repos/community-i686/
tachyon/repos/community-i686/PKGBUILD
(from rev 125626, tachyon/trunk/PKGBUILD)
tachyon/repos/community-i686/enable-jpeg-png.patch
(from rev 125626, tachyon/trunk/enable-jpeg-png.patch)
tachyon/repos/community-x86_64/
tachyon/repos/community-x86_64/PKGBUILD
(from rev 125626, tachyon/trunk/PKGBUILD)
tachyon/repos/community-x86_64/enable-jpeg-png.patch
(from rev 125626, tachyon/trunk/enable-jpeg-png.patch)
----------------------------------------+
community-i686/PKGBUILD | 45 +++++++++++++++++++++++++++++++
community-i686/enable-jpeg-png.patch | 44 ++++++++++++++++++++++++++++++
community-x86_64/PKGBUILD | 45 +++++++++++++++++++++++++++++++
community-x86_64/enable-jpeg-png.patch | 44 ++++++++++++++++++++++++++++++
4 files changed, 178 insertions(+)
Copied: tachyon/repos/community-i686/PKGBUILD (from rev 125626, tachyon/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-08 20:35:17 UTC (rev 125627)
@@ -0,0 +1,45 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Rémy Oudompheng <remy at archlinux.org>
+
+pkgname=tachyon
+pkgver=0.98.9
+pkgrel=3
+pkgdesc="Multithreaded ray tracing software"
+arch=('i686' 'x86_64')
+url="http://jedi.ks.uiuc.edu/~johns/raytracer/"
+license=('BSD')
+depends=('libjpeg-turbo' 'libpng')
+makedepends=()
+source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz" 'enable-jpeg-png.patch')
+md5sums=('eb39e10bb37bccc949b45b8fc28dabd7'
+ 'e0f0c2bd974d0beac509d6dd237ad77c')
+
+case "$CARCH" in
+ "i686") _target=linux-thr ;;
+ "x86_64") _target=linux-64-thr ;;
+esac
+
+prepare(){
+ cd $pkgname
+# enable JPEG and PNG support
+ patch -p0 -i "$srcdir"/enable-jpeg-png.patch
+}
+
+build() {
+ cd $pkgname/unix
+ make $_target
+}
+
+package() {
+ cd $pkgname/compile/$_target
+ install -D -m 755 tachyon $pkgdir/usr/bin/tachyon
+ install -D -m 644 libtachyon.a $pkgdir/usr/lib/libtachyon.a
+
+ cd $srcdir/$pkgname/scenes
+ install -d "$pkgdir"/usr/share/tachyon/scenes/imaps
+ install -m 644 README *.dat *.cam *.ac "$pkgdir"/usr/share/tachyon/scenes
+ install -m 644 imaps/* "$pkgdir"/usr/share/tachyon/scenes/imaps
+
+ install -d "$pkgdir"/usr/share/licenses/tachyon
+ install $srcdir/$pkgname/Copyright "$pkgdir"/usr/share/licenses/tachyon
+}
Copied: tachyon/repos/community-i686/enable-jpeg-png.patch (from rev 125626, tachyon/trunk/enable-jpeg-png.patch)
===================================================================
--- community-i686/enable-jpeg-png.patch (rev 0)
+++ community-i686/enable-jpeg-png.patch 2015-01-08 20:35:17 UTC (rev 125627)
@@ -0,0 +1,44 @@
+--- unix/Make-config.orig 2015-01-08 20:45:17.968890865 +0100
++++ unix/Make-config 2015-01-08 20:46:16.223075085 +0100
+@@ -108,14 +108,14 @@
+ # http://www.ijg.org/files/
+ ##########################################################################
+ # Uncomment the following lines to disable JPEG support
+-USEJPEG=
+-JPEGINC=
+-JPEGLIB=
++#USEJPEG=
++#JPEGINC=
++#JPEGLIB=
+
+ # Uncomment the following lines to enable JPEG support
+-#USEJPEG= -DUSEJPEG
+-#JPEGINC= -I/usr/local/include
+-#JPEGLIB= -L/usr/local/lib -ljpeg
++USEJPEG= -DUSEJPEG
++JPEGINC= -I/usr/include
++JPEGLIB= -L/usr/lib -ljpeg
+
+
+ ##########################################################################
+@@ -128,14 +128,14 @@
+ # http://www.libpng.org/
+ ##########################################################################
+ # Uncomment the following lines to disable PNG support
+-USEPNG=
+-PNGINC=
+-PNGLIB=
++#USEPNG=
++#PNGINC=
++#PNGLIB=
+
+ # Uncomment the following lines to enable PNG support
+-#USEPNG= -DUSEPNG
+-#PNGINC= -I/usr/local/include
+-#PNGLIB= -L/usr/local/lib -lpng -lz
++USEPNG= -DUSEPNG
++PNGINC= -I/usr/include
++PNGLIB= -L/usr/lib -lpng -lz
+
+
+ ##########################################################################
Copied: tachyon/repos/community-x86_64/PKGBUILD (from rev 125626, tachyon/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2015-01-08 20:35:17 UTC (rev 125627)
@@ -0,0 +1,45 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Rémy Oudompheng <remy at archlinux.org>
+
+pkgname=tachyon
+pkgver=0.98.9
+pkgrel=3
+pkgdesc="Multithreaded ray tracing software"
+arch=('i686' 'x86_64')
+url="http://jedi.ks.uiuc.edu/~johns/raytracer/"
+license=('BSD')
+depends=('libjpeg-turbo' 'libpng')
+makedepends=()
+source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz" 'enable-jpeg-png.patch')
+md5sums=('eb39e10bb37bccc949b45b8fc28dabd7'
+ 'e0f0c2bd974d0beac509d6dd237ad77c')
+
+case "$CARCH" in
+ "i686") _target=linux-thr ;;
+ "x86_64") _target=linux-64-thr ;;
+esac
+
+prepare(){
+ cd $pkgname
+# enable JPEG and PNG support
+ patch -p0 -i "$srcdir"/enable-jpeg-png.patch
+}
+
+build() {
+ cd $pkgname/unix
+ make $_target
+}
+
+package() {
+ cd $pkgname/compile/$_target
+ install -D -m 755 tachyon $pkgdir/usr/bin/tachyon
+ install -D -m 644 libtachyon.a $pkgdir/usr/lib/libtachyon.a
+
+ cd $srcdir/$pkgname/scenes
+ install -d "$pkgdir"/usr/share/tachyon/scenes/imaps
+ install -m 644 README *.dat *.cam *.ac "$pkgdir"/usr/share/tachyon/scenes
+ install -m 644 imaps/* "$pkgdir"/usr/share/tachyon/scenes/imaps
+
+ install -d "$pkgdir"/usr/share/licenses/tachyon
+ install $srcdir/$pkgname/Copyright "$pkgdir"/usr/share/licenses/tachyon
+}
Copied: tachyon/repos/community-x86_64/enable-jpeg-png.patch (from rev 125626, tachyon/trunk/enable-jpeg-png.patch)
===================================================================
--- community-x86_64/enable-jpeg-png.patch (rev 0)
+++ community-x86_64/enable-jpeg-png.patch 2015-01-08 20:35:17 UTC (rev 125627)
@@ -0,0 +1,44 @@
+--- unix/Make-config.orig 2015-01-08 20:45:17.968890865 +0100
++++ unix/Make-config 2015-01-08 20:46:16.223075085 +0100
+@@ -108,14 +108,14 @@
+ # http://www.ijg.org/files/
+ ##########################################################################
+ # Uncomment the following lines to disable JPEG support
+-USEJPEG=
+-JPEGINC=
+-JPEGLIB=
++#USEJPEG=
++#JPEGINC=
++#JPEGLIB=
+
+ # Uncomment the following lines to enable JPEG support
+-#USEJPEG= -DUSEJPEG
+-#JPEGINC= -I/usr/local/include
+-#JPEGLIB= -L/usr/local/lib -ljpeg
++USEJPEG= -DUSEJPEG
++JPEGINC= -I/usr/include
++JPEGLIB= -L/usr/lib -ljpeg
+
+
+ ##########################################################################
+@@ -128,14 +128,14 @@
+ # http://www.libpng.org/
+ ##########################################################################
+ # Uncomment the following lines to disable PNG support
+-USEPNG=
+-PNGINC=
+-PNGLIB=
++#USEPNG=
++#PNGINC=
++#PNGLIB=
+
+ # Uncomment the following lines to enable PNG support
+-#USEPNG= -DUSEPNG
+-#PNGINC= -I/usr/local/include
+-#PNGLIB= -L/usr/local/lib -lpng -lz
++USEPNG= -DUSEPNG
++PNGINC= -I/usr/include
++PNGLIB= -L/usr/lib -lpng -lz
+
+
+ ##########################################################################
More information about the arch-commits
mailing list