Sat May 14 15:31:51 2022 UTC ()
graphene: SunOS needs -D__EXTENSIONS__


(jperkin)
diff -r1.4 -r1.5 pkgsrc/graphics/graphene/Makefile

cvs diff -r1.4 -r1.5 pkgsrc/graphics/graphene/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/graphene/Makefile 2021/12/08 16:02:09 1.4
+++ pkgsrc/graphics/graphene/Makefile 2022/05/14 15:31:50 1.5
@@ -1,27 +1,29 @@ @@ -1,27 +1,29 @@
1# $NetBSD: Makefile,v 1.4 2021/12/08 16:02:09 adam Exp $ 1# $NetBSD: Makefile,v 1.5 2022/05/14 15:31:50 jperkin Exp $
2 2
3DISTNAME= graphene-1.10.2 3DISTNAME= graphene-1.10.2
4PKGREVISION= 1 4PKGREVISION= 1
5CATEGORIES= graphics 5CATEGORIES= graphics
6MASTER_SITES= ${MASTER_SITE_GITHUB:=ebassi/} 6MASTER_SITES= ${MASTER_SITE_GITHUB:=ebassi/}
7GITHUB_RELEASE= ${PKGVERSION_NOREV} 7GITHUB_RELEASE= ${PKGVERSION_NOREV}
8EXTRACT_SUFX= .tar.xz 8EXTRACT_SUFX= .tar.xz
9 9
10MAINTAINER= prlw1@cam.ac.uk 10MAINTAINER= prlw1@cam.ac.uk
11HOMEPAGE= https://ebassi.github.io/graphene/ 11HOMEPAGE= https://ebassi.github.io/graphene/
12COMMENT= Thin layer of graphic data types 12COMMENT= Thin layer of graphic data types
13LICENSE= mit 13LICENSE= mit
14 14
15USE_TOOLS+= pkg-config 15USE_TOOLS+= pkg-config
16 16
17MESON_ARGS+= -Dgobject_types=true 17MESON_ARGS+= -Dgobject_types=true
18MESON_ARGS+= -Dintrospection=true 18MESON_ARGS+= -Dintrospection=true
19MESON_ARGS+= -Dtests=false 19MESON_ARGS+= -Dtests=false
20MESON_ARGS+= -Dinstalled_tests=false 20MESON_ARGS+= -Dinstalled_tests=false
21 21
 22CFLAGS.SunOS+= -D__EXTENSIONS__
 23
22PYTHON_FOR_BUILD_ONLY= tool 24PYTHON_FOR_BUILD_ONLY= tool
23 25
24.include "../../devel/glib2/buildlink3.mk" 26.include "../../devel/glib2/buildlink3.mk"
25.include "../../devel/gobject-introspection/buildlink3.mk" 27.include "../../devel/gobject-introspection/buildlink3.mk"
26.include "../../devel/meson/build.mk" 28.include "../../devel/meson/build.mk"
27.include "../../mk/bsd.pkg.mk" 29.include "../../mk/bsd.pkg.mk"