=> Bootstrap dependency digest>=20211023: found digest-20220214 ===> Skipping vulnerability checks. WARNING: No /usr/pkg/pkgdb/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/sbin/pkg_admin -K /usr/pkg/pkgdb fetch-pkg-vulnerabilities'. ===> Building for py37-OpenGL-accelerate-3.1.5nb2 cd /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src && for i in *.pyx; do cython-3.7 $i; done /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/arraydatatype.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper/cArgConverter.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper/pyArgConverter.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper/returnConverter.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ arraydatatype.pyx:7:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ arraydatatype.pyx:7:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... ) return handler.arrayByteCount( value ) # Now some array helper functions... cdef class Output(cArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:261:18: First base of 'Output' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... if pyArgs[index] is not DO_OUTPUT[0] and pyArgs[index] is not DO_OUTPUT[1]: return self.arrayType.asArray( pyArgs[index] ) return self.arrayType.c_zeros( self.c_getSize(pyArgs), self.arrayType.typeConstant ) cdef class AsArrayOfType(pyArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:358:25: First base of 'AsArrayOfType' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... self.typeIndex = wrapper.pyArgIndex( self.typeName ) cdef object c_call( self, object incoming, object function, tuple arguments ): """Get the arg as an array of the appropriate type""" return self.arrayType.asArray( incoming, arguments[ self.typeIndex ] ) cdef class AsArrayTyped(pyArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:384:24: First base of 'AsArrayTyped' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... ), incoming, ) return result cdef class AsArrayTypedSize(cArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:428:28: First base of 'AsArrayTypedSize' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... return self.handler.c_lookup( value ) def from_param( self, object value, object typeConstant=None ): """Given a value in a known data-pointer type, convert to a ctypes pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:137:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... def from_param( self, object value, object typeConstant=None ): """Given a value in a known data-pointer type, convert to a ctypes pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_from_param( ^ ------------------------------------------------------------ arraydatatype.pyx:138:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... return self.from_param( value ) def dataPointer( self, value ): """Given a value in a known data-pointer type, return long for pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:150:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... def dataPointer( self, value ): """Given a value in a known data-pointer type, return long for pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_dataPointer( ^ ------------------------------------------------------------ arraydatatype.pyx:151:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... def asArray( self, value, typeCode=None ): """Given a value, convert to preferred array representation""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:173:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """Given a value, convert to preferred array representation""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_asArray( ^ ------------------------------------------------------------ arraydatatype.pyx:174:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... def arraySize( self, value, typeCode = None ): """Given a data-value, calculate dimensions for the array (number-of-units)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:192:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """Given a data-value, calculate dimensions for the array (number-of-units)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_arraySize( ^ ------------------------------------------------------------ arraydatatype.pyx:193:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... Uses our local type if defined, otherwise asks the handler to guess... """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:207:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_unitSize( ^ ------------------------------------------------------------ arraydatatype.pyx:208:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... cdef c_zeros( self, dims, typeCode ): """C-level function to create empty array""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_get_output_handler( ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:225:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """C-level function to create empty array""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_get_output_handler( ) if isinstance( handler, FormatHandler ): return (handler).c_zeros( ^ ------------------------------------------------------------ arraydatatype.pyx:226:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... def dimensions( self, value, typeCode=None ): """Given a data-value, get the dimensions (assumes full structure info)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:239:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """Given a data-value, get the dimensions (assumes full structure info)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_dimensions( ^ ------------------------------------------------------------ arraydatatype.pyx:240:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... For most data-types this is arraySize() * atomic-unit-size """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:253:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_arrayByteCount( ^ ------------------------------------------------------------ arraydatatype.pyx:254:21: 'FormatHandler' is not a type identifier /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/buffers_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Cython memoryview implementation of buffer-api format handler""" from ctypes import c_void_p from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ buffers_formathandler.pyx:3:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython memoryview implementation of buffer-api format handler""" from ctypes import c_void_p from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ buffers_formathandler.pyx:3:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... object PyMemoryView_GetContiguous(object obj, int buffertype, char order) bint PyMemoryView_Check(object obj) Py_buffer *PyMemoryView_GET_BUFFER(object obj) cdef class MemoryviewHandler(FormatHandler): ^ ------------------------------------------------------------ buffers_formathandler.pyx:50:29: First base of 'MemoryviewHandler' is not an extension type /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/errorchecker.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/latebind.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/nones_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for None-as-an-array format handler operations""" from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ nones_formathandler.pyx:2:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for None-as-an-array format handler operations""" from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ nones_formathandler.pyx:2:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for None-as-an-array format handler operations""" from OpenGL_accelerate.formathandler cimport FormatHandler cdef class NoneHandler(FormatHandler): ^ ------------------------------------------------------------ nones_formathandler.pyx:4:23: First base of 'NoneHandler' is not an extension type /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/numpy_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for numpy format handler operations""" from ctypes import c_void_p import numpy as np cimport numpy as np from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ numpy_formathandler.pyx:5:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for numpy format handler operations""" from ctypes import c_void_p import numpy as np cimport numpy as np from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ numpy_formathandler.pyx:5:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Wrap PyArray_DESCR and incref to deal with the "borrowed" reference""" cdef np.dtype desc = PyArray_DESCR( array ) Py_INCREF( desc) return desc cdef class NumpyHandler(FormatHandler): ^ ------------------------------------------------------------ numpy_formathandler.pyx:39:24: First base of 'NumpyHandler' is not an extension type /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/vbo.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded VBO implementation""" import ctypes, weakref from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ vbo.pyx:3:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded VBO implementation""" import ctypes, weakref from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ vbo.pyx:3:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... if self.vbo is not None: return self.vbo.check_live() else: raise RuntimeError( """Attempting to use offset into deleted VBO""" ) cdef class VBOHandler(FormatHandler): ^ ------------------------------------------------------------ vbo.pyx:290:22: First base of 'VBOHandler' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... cdef c_dimensions( self, object instance ): """Retrieve full set of dimensions for the array as tuple""" (instance).check_live() return self.arrayType.dimensions( (instance).data ) cdef class VBOOffsetHandler(FormatHandler): ^ ------------------------------------------------------------ vbo.pyx:332:28: First base of 'VBOOffsetHandler' is not an extension type /usr/pkg/lib/python3.7/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/wrapper.pyx tree = Parsing.p_module(s, pxd, full_module_name) (cd /tmp/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/ && /usr/bin/env USETOOLS=no PTHREAD_CFLAGS=\ -pthread\ PTHREAD_LDFLAGS=\ -pthread PTHREAD_LIBS= PTHREADBASE=/usr DL_CFLAGS=\ -pthread\ DL_LDFLAGS=\ -pthread DL_LIBS= NPY_BLAS_LIBS=-lblas NPY_LAPACK_LIBS=-llapack\ -lblas NPY_CBLAS_LIBS=-lcblas\ -lblas PYTHON=/usr/pkg/bin/python3.7 CC=gcc CFLAGS=-O2\ -fPIC\ -D_FORTIFY_SOURCE=2\ -I/usr/include\ -I/usr/pkg/include/python3.7\ -I/usr/pkg/include CPPFLAGS=-I/usr/pkg/include/netlib\ -I/usr/include\ -I/usr/pkg/include/python3.7\ -I/usr/pkg/include CXX=c++ CXXFLAGS=-O2\ -fPIC\ -D_FORTIFY_SOURCE=2\ -I/usr/include\ -I/usr/pkg/include/python3.7\ -I/usr/pkg/include COMPILER_RPATH_FLAG=-Wl,-R F77=gfortran FC=gfortran FFLAGS=-O LANG=C LC_ALL=C LC_COLLATE=C LC_CTYPE=C LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LDFLAGS=-Wl,-zrelro\ -L/usr/lib\ -Wl,-R/usr/lib\ -L/usr/pkg/lib\ -Wl,-R/usr/pkg/lib LINKER_RPATH_FLAG=-R PATH=/tmp/graphics/py-OpenGL-accelerate/work/.cwrapper/bin:/tmp/graphics/py-OpenGL-accelerate/work/.buildlink/bin:/tmp/graphics/py-OpenGL-accelerate/work/.gcc/bin:/tmp/graphics/py-OpenGL-accelerate/work/.tools/bin:/usr/pkg/bin:/usr/bin:/bin:/usr/pkg/bin:/usr/local/bin:/usr/pkg/bin:/usr/X11R7/bin PREFIX=/usr/pkg MAKELEVEL=0 CONFIG_SITE= PKG_SYSCONFDIR=/usr/pkg/etc CXXCPP=cpp HOME=/tmp/graphics/py-OpenGL-accelerate/work/.home CWRAPPERS_CONFIG_DIR=/tmp/graphics/py-OpenGL-accelerate/work/.cwrapper/config CPP=cpp LOCALBASE=/usr/pkg X11BASE=/usr/X11R7 PKGMANDIR=man PKGINFODIR=info PKGGNUDIR=gnu/ MAKECONF=/dev/null OBJECT_FMT=ELF USETOOLS=no BSD_INSTALL_PROGRAM=/usr/bin/install\ -c\ -s\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_SCRIPT=/usr/bin/install\ -c\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_LIB=/usr/bin/install\ -c\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_DATA=/usr/bin/install\ -c\ -o\ makoto\ -g\ wheel\ -m\ 644 BSD_INSTALL_MAN=/usr/bin/install\ -c\ -o\ makoto\ -g\ wheel\ -m\ 644 BSD_INSTALL=/usr/bin/install BSD_INSTALL_PROGRAM_DIR=/usr/bin/install\ -d\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_SCRIPT_DIR=/usr/bin/install\ -d\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_LIB_DIR=/usr/bin/install\ -d\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_DATA_DIR=/usr/bin/install\ -d\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_MAN_DIR=/usr/bin/install\ -d\ -o\ makoto\ -g\ wheel\ -m\ 755 BSD_INSTALL_GAME=/usr/bin/install\ -c\ -s\ -o\ makoto\ -g\ wheel\ -m\ 2555 BSD_INSTALL_GAME_DATA=/usr/bin/install\ -c\ -o\ makoto\ -g\ wheel\ -m\ 664 BSD_INSTALL_GAME_DIR=/usr/bin/install\ -d\ -o\ makoto\ -g\ wheel\ -m\ 775 INSTALL_INFO= MAKEINFO=/tmp/graphics/py-OpenGL-accelerate/work/.tools/bin/makeinfo FLEX= BISON= ITSTOOL=/tmp/graphics/py-OpenGL-accelerate/work/.tools/bin/itstool GDBUS_CODEGEN=/tmp/graphics/py-OpenGL-accelerate/work/.tools/bin/gdbus-codegen PKG_CONFIG= PKG_CONFIG_LIBDIR=/tmp/graphics/py-OpenGL-accelerate/work/.buildlink/lib/pkgconfig:/tmp/graphics/py-OpenGL-accelerate/work/.buildlink/share/pkgconfig PKG_CONFIG_LOG=/tmp/graphics/py-OpenGL-accelerate/work/.pkg-config.log PKG_CONFIG_PATH= CWRAPPERS_CONFIG_DIR=/tmp/graphics/py-OpenGL-accelerate/work/.cwrapper/config /usr/pkg/bin/python3.7 setup.py build -j4) running build running build_py creating build creating build/lib.netbsd-9.0-amd64-3.7 creating build/lib.netbsd-9.0-amd64-3.7/OpenGL_accelerate copying OpenGL_accelerate/__init__.py -> build/lib.netbsd-9.0-amd64-3.7/OpenGL_accelerate running build_ext *** Signal 11 Stop. make[1]: stopped in /amd/pkgsrc/CHROOT/P/pkgsrc/graphics/py-OpenGL-accelerate *** Error code 1 Stop. make: stopped in /amd/pkgsrc/CHROOT/P/pkgsrc/graphics/py-OpenGL-accelerate