community/tachyon to 0.99.3-1

This commit is contained in:
Kevin Mihelich 2022-03-07 20:49:10 +00:00
parent 62b67c10a0
commit 453f70fb6a
3 changed files with 10 additions and 10 deletions

View file

@ -6,7 +6,7 @@
# - sed to remove -m32 and -m64 from CFLAGS # - sed to remove -m32 and -m64 from CFLAGS
pkgname=tachyon pkgname=tachyon
pkgver=0.99.2 pkgver=0.99.3
pkgrel=1 pkgrel=1
pkgdesc="Multithreaded ray tracing software" pkgdesc="Multithreaded ray tracing software"
arch=(x86_64) arch=(x86_64)
@ -17,9 +17,9 @@ makedepends=()
source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz" source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz"
enable-jpeg-png.patch enable-jpeg-png.patch
tachyon-system-cflags.patch) tachyon-system-cflags.patch)
sha256sums=('d40a5752fe78b84c5ca913bf55e5707c310526f9eebd8269d1583359d8415798' sha256sums=('c725913bb9b7e1c4e282e0980bf5a3066ac0dcaaccd97b071a6d6d25e6e72492'
'fba8ac0aaa9dd6fe8b4737f5ae95d7795751e15d88bff3ec09ed665673d126b9' '10d96a951c38e3a3a3b2854ad5e0da3fd24ee32446f604baae1a6b1ad6e6dad6'
'84108222d5daa60285111b69e9ee086aad3818f2fa8d706b4bd9811656682f2c') '5d81b5487d231f46eaa05eb3c1dfcc84a961b58d71a8c36d6feee0dce713dc6d')
case "$CARCH" in case "$CARCH" in
arm*) _target=linux-thr ;; arm*) _target=linux-thr ;;

View file

@ -1,6 +1,6 @@
--- unix/Make-config.orig 2015-01-08 20:45:17.968890865 +0100 --- unix/Make-config.orig 2015-01-08 20:45:17.968890865 +0100
+++ unix/Make-config 2015-01-08 20:46:16.223075085 +0100 +++ unix/Make-config 2015-01-08 20:46:16.223075085 +0100
@@ -181,14 +181,14 @@ @@ -188,14 +188,14 @@
# http://www.ijg.org/files/ # http://www.ijg.org/files/
########################################################################## ##########################################################################
# Uncomment the following lines to disable JPEG support # Uncomment the following lines to disable JPEG support
@ -21,7 +21,7 @@
########################################################################## ##########################################################################
@@ -201,14 +201,14 @@ @@ -208,14 +208,14 @@
# http://www.libpng.org/ # http://www.libpng.org/
########################################################################## ##########################################################################
# Uncomment the following lines to disable PNG support # Uncomment the following lines to disable PNG support

View file

@ -1,9 +1,9 @@
--- tachyon/unix/Make-arch.orig 2019-08-24 23:13:05.136655180 +0000 --- tachyon/unix/Make-arch.orig 2019-08-24 23:13:05.136655180 +0000
+++ tachyon/unix/Make-arch 2019-08-24 23:13:36.057062493 +0000 +++ tachyon/unix/Make-arch 2019-08-24 23:13:36.057062493 +0000
@@ -1278,12 +1278,12 @@ @@ -1273,12 +1273,12 @@
$(MAKE) all \ $(MAKE) all \
"ARCH = linux-64-thr" \ "ARCH = linux-64-thr" \
"CC = gcc" \ "CC = cc" \
- "CFLAGS = -m64 -Wall -O3 -fomit-frame-pointer -ffast-math -DLinux $(THREADSFLAGS) -D_REENTRANT $(MISCFLAGS)" \ - "CFLAGS = -m64 -Wall -O3 -fomit-frame-pointer -ffast-math -DLinux $(THREADSFLAGS) -D_REENTRANT $(MISCFLAGS)" \
+ "CFLAGS = $(CFLAGS) -DLinux $(THREADSFLAGS) -D_REENTRANT $(MISCFLAGS)" \ + "CFLAGS = $(CFLAGS) -DLinux $(THREADSFLAGS) -D_REENTRANT $(MISCFLAGS)" \
"AR = ar" \ "AR = ar" \
@ -13,5 +13,5 @@
- "LIBS = -L. -ltachyon $(MISCLIB) -lm -lpthread" - "LIBS = -L. -ltachyon $(MISCLIB) -lm -lpthread"
+ "LIBS = -L. -ltachyon $(MISCLIB) -lm -lpthread" "LDFLAGS = $(LDFLAGS)" + "LIBS = -L. -ltachyon $(MISCLIB) -lm -lpthread" "LDFLAGS = $(LDFLAGS)"
# Linux x86, on AMD Athlon, using gcc # Linux on AMD64/EM64T, using gcc
linux-p4: linux-64-thr-c11: