Received: by mail.netbsd.org (Postfix, from userid 605) id 8139884D9C; Sun, 30 Dec 2018 15:55:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0D3F284D9B for ; Sun, 30 Dec 2018 15:55:57 +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 q1hY3mfv4Vu1 for ; Sun, 30 Dec 2018 15:55:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5D19784D95 for ; Sun, 30 Dec 2018 15:55:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 57A93FB16; Sun, 30 Dec 2018 15:55:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1546185356237130" MIME-Version: 1.0 Date: Sun, 30 Dec 2018 15:55:56 +0000 From: "Olaf Seibert" Subject: CVS commit: pkgsrc/editors/lyx To: pkgsrc-changes@NetBSD.org Reply-To: rhialto@netbsd.org X-Mailer: log_accum Message-Id: <20181230155556.57A93FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1546185356237130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rhialto Date: Sun Dec 30 15:55:56 UTC 2018 Modified Files: pkgsrc/editors/lyx: Makefile Log Message: lyx: temporarily use the built-in boost because the pkgsrc version has removed the deprecated boost/signal.hpp. To be reverted when upstream LyX fixes this. To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 pkgsrc/editors/lyx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1546185356237130 Content-Disposition: inline Content-Length: 1366 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/lyx/Makefile diff -u pkgsrc/editors/lyx/Makefile:1.71 pkgsrc/editors/lyx/Makefile:1.72 --- pkgsrc/editors/lyx/Makefile:1.71 Thu Dec 13 19:51:50 2018 +++ pkgsrc/editors/lyx/Makefile Sun Dec 30 15:55:56 2018 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.71 2018/12/13 19:51:50 adam Exp $ +# $NetBSD: Makefile,v 1.72 2018/12/30 15:55:56 rhialto Exp $ DISTNAME= lyx-2.2.2 -PKGREVISION= 9 +PKGREVISION= 10 CATEGORIES= editors MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/ MASTER_SITES+= ftp://ftp.sdsc.edu/pub/other/lyx/stable/2.2.x/ @@ -69,7 +69,8 @@ CXXFLAGS.Linux+= -fpermissive LDFLAGS.SunOS+= -liconv CONFIGURE_ARGS+= --without-included-mythes -CONFIGURE_ARGS+= --without-included-boost +# XXX Uncomment this after updating LyX to latest: +#CONFIGURE_ARGS+= --without-included-boost CONFIGURE_ARGS+= --with-extra-prefix=${BUILDLINK_PREFIX.qt4-libs} \ --with-qt4-dir=${QTDIR:Q} \ @@ -184,7 +185,7 @@ SUBST_SED.python+= -e 's,command("python .include "../../x11/qt4-libs/buildlink3.mk" .include "../../x11/qt4-tools/buildlink3.mk" .include "../../textproc/mythes/buildlink3.mk" -.include "../../devel/boost-libs/buildlink3.mk" +#.include "../../devel/boost-libs/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" --_----------=_1546185356237130--