pkgsrc-Changes archive

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

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Aug  2 19:30:57 UTC 2023

Modified Files:
        pkgsrc/devel/flatzebra: Makefile
        pkgsrc/emulators/gpsim-devel: Makefile
        pkgsrc/games/powder: Makefile
        pkgsrc/games/xkobo: Makefile
        pkgsrc/inputmethod/scim-unikey: Makefile
        pkgsrc/lang/spidermonkey185: Makefile
        pkgsrc/net/stund: Makefile
        pkgsrc/security/sleuthkit: Makefile
        pkgsrc/textproc/sablotron: Makefile

Log Message:
*: Mark packages that were originally identified as requiring
C++03 due to failing to build with a C++14 default compiler
with FORCE_CXX_STD instead of USE_LANGUAGES.

(Third round: packages missed due to stderr from cvs overwriting less)


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/flatzebra/Makefile
cvs rdiff -u -r1.56 -r1.57 pkgsrc/emulators/gpsim-devel/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/games/powder/Makefile
cvs rdiff -u -r1.27 -r1.28 pkgsrc/games/xkobo/Makefile
cvs rdiff -u -r1.42 -r1.43 pkgsrc/inputmethod/scim-unikey/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/spidermonkey185/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/stund/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/security/sleuthkit/Makefile
cvs rdiff -u -r1.55 -r1.56 pkgsrc/textproc/sablotron/Makefile

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

Modified files:

Index: pkgsrc/devel/flatzebra/Makefile
diff -u pkgsrc/devel/flatzebra/Makefile:1.5 pkgsrc/devel/flatzebra/Makefile:1.6
--- pkgsrc/devel/flatzebra/Makefile:1.5 Sun Jan 26 17:30:56 2020
+++ pkgsrc/devel/flatzebra/Makefile     Wed Aug  2 19:30:56 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2020/01/26 17:30:56 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2023/08/02 19:30:56 nia Exp $
 
 DISTNAME=      flatzebra-0.1.7
 CATEGORIES=    devel
@@ -12,7 +12,10 @@ LICENSE=     gnu-gpl-v2
 GNU_CONFIGURE= yes
 USE_LIBTOOL=   yes
 USE_TOOLS+=    pkg-config
-USE_LANGUAGES= c c++03
+USE_LANGUAGES= c c++
+
+# Fails with C++14 default language
+FORCE_CXX_STD= c++03
 
 CONFIGURE_ARGS+=       --disable-sdltest
 

Index: pkgsrc/emulators/gpsim-devel/Makefile
diff -u pkgsrc/emulators/gpsim-devel/Makefile:1.56 pkgsrc/emulators/gpsim-devel/Makefile:1.57
--- pkgsrc/emulators/gpsim-devel/Makefile:1.56  Mon Jul 17 22:00:23 2023
+++ pkgsrc/emulators/gpsim-devel/Makefile       Wed Aug  2 19:30:56 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.56 2023/07/17 22:00:23 nia Exp $
+# $NetBSD: Makefile,v 1.57 2023/08/02 19:30:56 nia Exp $
 #
 
 DISTNAME=      gpsim-20050905
@@ -11,13 +11,16 @@ HOMEPAGE=   http://gpsim.sourceforge.net/
 COMMENT=       PIC emulator with X interface
 
 GNU_CONFIGURE= YES
-USE_LANGUAGES= c c++03
+USE_LANGUAGES= c c++
 
 USE_TOOLS+=    bison gmake lex pkg-config
 USE_LIBTOOL=   YES
 
 CONFLICTS=     eXdbm-[0-9]* gpsim-[0-9]*
 
+# Fails with C++14 default language.
+FORCE_CXX_STD= c++03
+
 .include "../../devel/popt/buildlink3.mk"
 # rl_callback_read_char, rl_copy_text,
 # rl_callback_handler_remove, rl_forced_update_display,

Index: pkgsrc/games/powder/Makefile
diff -u pkgsrc/games/powder/Makefile:1.9 pkgsrc/games/powder/Makefile:1.10
--- pkgsrc/games/powder/Makefile:1.9    Tue Nov 24 18:10:03 2020
+++ pkgsrc/games/powder/Makefile        Wed Aug  2 19:30:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2020/11/24 18:10:03 nia Exp $
+# $NetBSD: Makefile,v 1.10 2023/08/02 19:30:57 nia Exp $
 #
 
 DISTNAME=      powder118_src
@@ -11,9 +11,12 @@ HOMEPAGE=    http://www.zincland.com/powder
 COMMENT=       Multiplatform roguelike game with graphics
 LICENSE=       powder-license
 
-USE_LANGUAGES= c c++03
+USE_LANGUAGES= c c++
 USE_TOOLS+=    bash gmake
 
+# Fails with C++14 default language.
+FORCE_CXX_STD= c++03
+
 INSTALLATION_DIRS=     bin share/doc/powder
 INSTALLATION_DIRS+=    share/applications
 INSTALLATION_DIRS+=    share/icons/hicolor/48x48/apps

Index: pkgsrc/games/xkobo/Makefile
diff -u pkgsrc/games/xkobo/Makefile:1.27 pkgsrc/games/xkobo/Makefile:1.28
--- pkgsrc/games/xkobo/Makefile:1.27    Sun Nov  3 19:28:49 2019
+++ pkgsrc/games/xkobo/Makefile Wed Aug  2 19:30:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2019/11/03 19:28:49 rillig Exp $
+# $NetBSD: Makefile,v 1.28 2023/08/02 19:30:57 nia Exp $
 
 DISTNAME=      xkobo-1.11
 PKGREVISION=   5
@@ -19,9 +19,12 @@ OWN_DIRS_PERMS+=     ${VARBASE}/games/xkobo 
 MAKE_ENV+=     VARBASE=${VARBASE}
 
 USE_IMAKE=     yes
-USE_LANGUAGES= c c++03
+USE_LANGUAGES= c c++
 BUILD_TARGET+= xkobo all
 
+# Fails with C++14 default language.
+FORCE_CXX_STD= c++03
+
 .include "../../x11/libX11/buildlink3.mk"
 .include "../../x11/libXext/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/inputmethod/scim-unikey/Makefile
diff -u pkgsrc/inputmethod/scim-unikey/Makefile:1.42 pkgsrc/inputmethod/scim-unikey/Makefile:1.43
--- pkgsrc/inputmethod/scim-unikey/Makefile:1.42        Sun Jan 29 21:16:58 2023
+++ pkgsrc/inputmethod/scim-unikey/Makefile     Wed Aug  2 19:30:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.42 2023/01/29 21:16:58 ryoon Exp $
+# $NetBSD: Makefile,v 1.43 2023/08/02 19:30:57 nia Exp $
 #
 
 DISTNAME=      scim-unikey-0.3.1
@@ -14,11 +14,14 @@ LICENSE=    gnu-lgpl-v2.1
 GNU_CONFIGURE=         yes
 USE_LIBTOOL=           yes
 USE_PKGLOCALEDIR=      yes
-USE_LANGUAGES=         c c++03
+USE_LANGUAGES=         c c++
 USE_TOOLS+=            pkg-config msgfmt
 
 USE_SCIM_GTKUTILS=     yes
 
+# Fails with C++14 default language.
+FORCE_CXX_STD=         c++03
+
 .include "../../devel/gettext-lib/buildlink3.mk"
 .include "../../inputmethod/scim/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/lang/spidermonkey185/Makefile
diff -u pkgsrc/lang/spidermonkey185/Makefile:1.13 pkgsrc/lang/spidermonkey185/Makefile:1.14
--- pkgsrc/lang/spidermonkey185/Makefile:1.13   Tue Jun 28 11:34:15 2022
+++ pkgsrc/lang/spidermonkey185/Makefile        Wed Aug  2 19:30:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2022/06/28 11:34:15 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2023/08/02 19:30:57 nia Exp $
 #
 
 DISTNAME=      js185-1.0.0
@@ -15,7 +15,7 @@ LICENSE=      mpl-1.1
 WRKSRC=                ${WRKDIR}/js-1.8.5/js/src
 
 USE_TOOLS+=    gmake pkg-config perl:build zip:build
-USE_LANGUAGES= c c++03
+USE_LANGUAGES= c c++
 USE_LIBTOOL=   yes
 
 GNU_CONFIGURE=         yes
@@ -39,6 +39,9 @@ CHECK_PORTABILITY_SKIP+=      configure.in
 PKGCONFIG_OVERRIDE+=   ctypes/libffi/libffi.pc.in
 PKGCONFIG_OVERRIDE+=   mozjs185.pc.in
 
+# Fails with C++14 default language
+FORCE_CXX_STD= c++03
+
 .include "../../mk/bsd.prefs.mk"
 
 .if ${MACHINE_ARCH} == "arm"

Index: pkgsrc/net/stund/Makefile
diff -u pkgsrc/net/stund/Makefile:1.4 pkgsrc/net/stund/Makefile:1.5
--- pkgsrc/net/stund/Makefile:1.4       Fri Mar 20 11:58:11 2020
+++ pkgsrc/net/stund/Makefile   Wed Aug  2 19:30:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2020/03/20 11:58:11 nia Exp $
+# $NetBSD: Makefile,v 1.5 2023/08/02 19:30:57 nia Exp $
 
 DISTNAME=      stund-0.97
 CATEGORIES=    net
@@ -11,9 +11,12 @@ COMMENT=     STUN Client and Server
 LICENSE=       vovida-license
 
 WRKSRC=                ${WRKDIR}/stund
-USE_LANGUAGES= c++03
+USE_LANGUAGES= c c++
 USE_TOOLS+=    gmake
 
+# Fails with C++14 default language
+FORCE_CXX_STD=         c++03
+
 INSTALLATION_DIRS=     bin sbin share/doc/stund
 
 do-install:

Index: pkgsrc/security/sleuthkit/Makefile
diff -u pkgsrc/security/sleuthkit/Makefile:1.16 pkgsrc/security/sleuthkit/Makefile:1.17
--- pkgsrc/security/sleuthkit/Makefile:1.16     Tue Jun 28 11:35:51 2022
+++ pkgsrc/security/sleuthkit/Makefile  Wed Aug  2 19:30:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2022/06/28 11:35:51 wiz Exp $
+# $NetBSD: Makefile,v 1.17 2023/08/02 19:30:57 nia Exp $
 
 DISTNAME=      sleuthkit-4.1.3
 PKGREVISION=   10
@@ -13,10 +13,13 @@ LICENSE=    cpl-1.0 AND gnu-gpl-v2
 DEPENDS+=      p5-DateTime-TimeZone>=0:../../time/p5-DateTime-TimeZone
 
 GNU_CONFIGURE= yes
-USE_LANGUAGES= c c++03
+USE_LANGUAGES= c c++
 USE_LIBTOOL=   yes
 USE_TOOLS+=    gmake file perl:run
 
+# Fails with C++14 default language.
+FORCE_CXX_STD= c++03
+
 .include "../../sysutils/file/buildlink3.mk"
 .include "../../devel/libewf/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/sablotron/Makefile
diff -u pkgsrc/textproc/sablotron/Makefile:1.55 pkgsrc/textproc/sablotron/Makefile:1.56
--- pkgsrc/textproc/sablotron/Makefile:1.55     Tue Jun  6 12:42:34 2023
+++ pkgsrc/textproc/sablotron/Makefile  Wed Aug  2 19:30:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.55 2023/06/06 12:42:34 riastradh Exp $
+# $NetBSD: Makefile,v 1.56 2023/08/02 19:30:57 nia Exp $
 
 DISTNAME=              Sablot-1.0.2
 PKGNAME=               ${DISTNAME:S/Sablot/sablotron/}
@@ -14,10 +14,13 @@ TOOL_DEPENDS+=              p5-XML-Parser-[0-9]*:../
 
 GNU_CONFIGURE=         YES
 USE_TOOLS+=            gmake perl
-USE_LANGUAGES=         c c++03
+USE_LANGUAGES=         c c++
 USE_LIBTOOL=           YES
 CONFIGURE_ARGS+=       --with-html-dir=${PREFIX}/share/doc/sablotron
 
+# Fails with C++14 default language.
+FORCE_CXX_STD=         c++03
+
 # sablotron needs iconv but assumes it is in libc, so add what
 # buildlink3 finds.
 LIBS+=                 ${_BUILDLINK_LDADD.iconv}



Home | Main Index | Thread Index | Old Index