Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id A4DE57A16A for ; Thu, 27 Oct 2016 11:02:43 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E405C85E9B; Thu, 27 Oct 2016 11:02:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 743E685E85 for ; Thu, 27 Oct 2016 11:02:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id I_vTetCc-PdK for ; Thu, 27 Oct 2016 11:02:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D230F85E25 for ; Thu, 27 Oct 2016 11:02:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CC928FBD2; Thu, 27 Oct 2016 11:02:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1477566161240140" MIME-Version: 1.0 Date: Thu, 27 Oct 2016 11:02:41 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/fonts/lcdftypetools To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20161027110241.CC928FBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1477566161240140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Oct 27 11:02:41 UTC 2016 Modified Files: pkgsrc/fonts/lcdftypetools: Makefile Log Message: Fix build on -current -- this needs c++11 for static_assert. Improve COMMENT while here. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/fonts/lcdftypetools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1477566161240140 Content-Disposition: inline Content-Length: 1062 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/fonts/lcdftypetools/Makefile diff -u pkgsrc/fonts/lcdftypetools/Makefile:1.3 pkgsrc/fonts/lcdftypetools/Makefile:1.4 --- pkgsrc/fonts/lcdftypetools/Makefile:1.3 Thu Jun 16 03:57:25 2016 +++ pkgsrc/fonts/lcdftypetools/Makefile Thu Oct 27 11:02:41 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2016/06/16 03:57:25 markd Exp $ +# $NetBSD: Makefile,v 1.4 2016/10/27 11:02:41 wiz Exp $ DISTNAME= texlive-20160523-source PKGNAME= lcdftypetools-2.105 @@ -8,7 +8,7 @@ EXTRACT_SUFX= .tar.xz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://ctan.org/pkg/lcdf-typetools -COMMENT= A bundle of outline font manipulation tools +COMMENT= Outline font manipulation tools LICENSE= gnu-gpl-v2 DEPENDS+= tex-glyphlist-[0-9]*:../../fonts/tex-glyphlist @@ -22,6 +22,8 @@ USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config WRKSRC= ${WRKDIR}/${DISTNAME}/texk/lcdf-typetools +CXXFLAGS+= -std=c++11 + CONFIG_GUESS_OVERRIDE+= ${WRKDIR}/${DISTNAME}/build-aux/config.guess CONFIG_SUB_OVERRIDE+= ${WRKDIR}/${DISTNAME}/build-aux/config.sub --_----------=_1477566161240140--