pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/squeak-vm



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Mon Jul 13 03:06:47 UTC 2020

Modified Files:
        pkgsrc/lang/squeak-vm: Makefile

Log Message:
squeak-vm: fix sandboxed builds

This needs pkg-config available in order to handle dependencies to
build its Freetype FT2Plugin component. This fixes the build under
NetBSD, though SunOS at least has other problems, too. (While here,
also tweak a variable reference to the common form, noted by pkglint.)


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 pkgsrc/lang/squeak-vm/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/squeak-vm/Makefile
diff -u pkgsrc/lang/squeak-vm/Makefile:1.47 pkgsrc/lang/squeak-vm/Makefile:1.48
--- pkgsrc/lang/squeak-vm/Makefile:1.47 Sun Mar  8 16:42:29 2020
+++ pkgsrc/lang/squeak-vm/Makefile      Mon Jul 13 03:06:47 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.47 2020/03/08 16:42:29 bsiegert Exp $
+# $NetBSD: Makefile,v 1.48 2020/07/13 03:06:47 gutteridge Exp $
 #
 
 SQUEAK_VERSION=        4.10.2.2614
@@ -20,7 +20,7 @@ CHECK_PORTABILITY_SKIP=       unix/config/conf
 
 USE_LANGUAGES= c c++
 USE_CMAKE=     yes
-USE_TOOLS=     gzip
+USE_TOOLS+=    gzip pkg-config
 
 CONFIGURE_DIRS=        build
 CMAKE_ARG_PATH=        ../unix
@@ -56,7 +56,7 @@ pre-configure:
 .include "../../x11/libXt/buildlink3.mk"
 .include "../../x11/libXext/buildlink3.mk"
 .include "../../mk/oss.buildlink3.mk"
-.if $(OSS_TYPE) != "none"
+.if ${OSS_TYPE} != "none"
 PLIST.oss=     yes
 CMAKE_ARGS+=   -DLIBOSSAUDIO=${LIBOSSAUDIO:S/-l//}
 .endif



Home | Main Index | Thread Index | Old Index