Fri Sep 27 15:52:12 2019 UTC ()
Since we depend on devel/libuuid, use its header instead of a native
one. Should unbreak builds on Linuxen.

Declare type of function parameter, or it will default to int.


(hauke)
diff -r1.10 -r1.11 pkgsrc/emulators/shoebill/Makefile
diff -r1.4 -r1.5 pkgsrc/emulators/shoebill/distinfo
diff -r0 -r1.1 pkgsrc/emulators/shoebill/patches/patch-core_fpu.c
diff -r1.1 -r0 pkgsrc/emulators/shoebill/patches/patch-sdl-gui_sdl.c

cvs diff -r1.10 -r1.11 pkgsrc/emulators/shoebill/Makefile (expand / switch to unified diff)

--- pkgsrc/emulators/shoebill/Makefile 2019/08/11 13:20:58 1.10
+++ pkgsrc/emulators/shoebill/Makefile 2019/09/27 15:52:12 1.11
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.10 2019/08/11 13:20:58 wiz Exp $ 1# $NetBSD: Makefile,v 1.11 2019/09/27 15:52:12 hauke Exp $
2 2
3DISTNAME= shoebill-0.0.5 3DISTNAME= shoebill-0.0.5
4PKGREVISION= 4 4PKGREVISION= 5
5CATEGORIES= emulators 5CATEGORIES= emulators
6MASTER_SITES= ${MASTER_SITE_GITHUB:=pruten/} 6MASTER_SITES= ${MASTER_SITE_GITHUB:=pruten/}
7 7
8MAINTAINER= hauke@NetBSD.org 8MAINTAINER= hauke@NetBSD.org
9HOMEPAGE= https://github.com/pruten/shoebill/ 9HOMEPAGE= https://github.com/pruten/shoebill/
10COMMENT= Macintosh II emulator that runs A/UX 10COMMENT= Macintosh II emulator that runs A/UX
11LICENSE= 2-clause-bsd 11LICENSE= 2-clause-bsd
12 12
13# Missing long double math functions 13# Missing long double math functions
14NOT_FOR_PLATFORM= NetBSD-[0-6]*-* 14NOT_FOR_PLATFORM= NetBSD-[0-6]*-*
15 15
16USE_TOOLS+= perl gtar 16USE_TOOLS+= perl gtar
17EXTRACT_USING= gtar 17EXTRACT_USING= gtar

cvs diff -r1.4 -r1.5 pkgsrc/emulators/shoebill/distinfo (expand / switch to unified diff)

--- pkgsrc/emulators/shoebill/distinfo 2016/07/10 06:36:40 1.4
+++ pkgsrc/emulators/shoebill/distinfo 2019/09/27 15:52:12 1.5
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.4 2016/07/10 06:36:40 wiz Exp $ 1$NetBSD: distinfo,v 1.5 2019/09/27 15:52:12 hauke Exp $
2 2
3SHA1 (shoebill-0.0.5.tar.gz) = 40b9ae839bbb9d065ca7d36363b1b4660d780010 3SHA1 (shoebill-0.0.5.tar.gz) = 40b9ae839bbb9d065ca7d36363b1b4660d780010
4RMD160 (shoebill-0.0.5.tar.gz) = 20143081d2418d6961f86626e3d994b2feda8a4b 4RMD160 (shoebill-0.0.5.tar.gz) = 20143081d2418d6961f86626e3d994b2feda8a4b
5SHA512 (shoebill-0.0.5.tar.gz) = cf8d7945943d6d7a505c233b5c99371f5d37d5d60dd5beeeadbe442ef43b9980e96d51f193d69a03eb58a0a2b13103b4dba311a53c939b633b20753a8c19a772 5SHA512 (shoebill-0.0.5.tar.gz) = cf8d7945943d6d7a505c233b5c99371f5d37d5d60dd5beeeadbe442ef43b9980e96d51f193d69a03eb58a0a2b13103b4dba311a53c939b633b20753a8c19a772
6Size (shoebill-0.0.5.tar.gz) = 253877 bytes 6Size (shoebill-0.0.5.tar.gz) = 253877 bytes
 7SHA1 (patch-core_fpu.c) = a2fe3d42c8a61d580b966fe6c3909e9c61640b92
7SHA1 (patch-sdl-gui_lin_build.sh) = 8eb8bf622bc7b83f06a0d4dcdb8b77b25001163b 8SHA1 (patch-sdl-gui_lin_build.sh) = 8eb8bf622bc7b83f06a0d4dcdb8b77b25001163b
8SHA1 (patch-sdl-gui_sdl.c) = ee433b37104dcccc700d1d08b97807689ed8da67 

File Added: pkgsrc/emulators/shoebill/patches/patch-core_fpu.c
$NetBSD: patch-core_fpu.c,v 1.1 2019/09/27 15:52:12 hauke Exp $

Declare type of function parameter, or it will default to int...

--- core/fpu.c.orig	2015-09-14 02:11:18.000000000 +0000
+++ core/fpu.c
@@ -814,7 +814,7 @@ float128 _from_native(double n)
 #define _native_log2(a) (log(a) / log(2.0)) /* or log2() */
 #define _native_log(a) log(a)
 #define _native_log1p(a) log((a) + 1.0) /* or log1p() */
-double  _native_tentox(a) {
+double  _native_tentox(double a) {
     /*
      * This is a dumb workaround for a clang bug on OS X 10.10
      * Clang wants to optimize pow(10.0, a) to __exp(a), but

File Deleted: pkgsrc/emulators/shoebill/patches/Attic/patch-sdl-gui_sdl.c