Received: by mail.netbsd.org (Postfix, from userid 605) id 30C3284DFC; Thu, 21 Sep 2017 18:41:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B876E84D67 for ; Thu, 21 Sep 2017 18:41:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id xFjnDVabw-tZ for ; Thu, 21 Sep 2017 18:41:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2111A84D60 for ; Thu, 21 Sep 2017 18:41:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1C498FA9A; Thu, 21 Sep 2017 18:41:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150601931134750" MIME-Version: 1.0 Date: Thu, 21 Sep 2017 18:41:51 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/graphics/hugin To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170921184151.1C498FA9A@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. --_----------=_150601931134750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Sep 21 18:41:51 UTC 2017 Modified Files: pkgsrc/graphics/hugin: Makefile Log Message: Allow builing on macOS (without X11) To generate a diff of this commit: cvs rdiff -u -r1.70 -r1.71 pkgsrc/graphics/hugin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150601931134750 Content-Disposition: inline Content-Length: 1222 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/hugin/Makefile diff -u pkgsrc/graphics/hugin/Makefile:1.70 pkgsrc/graphics/hugin/Makefile:1.71 --- pkgsrc/graphics/hugin/Makefile:1.70 Mon Sep 18 09:53:23 2017 +++ pkgsrc/graphics/hugin/Makefile Thu Sep 21 18:41:50 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.70 2017/09/18 09:53:23 maya Exp $ +# $NetBSD: Makefile,v 1.71 2017/09/21 18:41:50 adam Exp $ DISTNAME= hugin-2017.0.0 PKGREVISION= 2 @@ -36,6 +36,8 @@ SUBST_FILES.apple+= src/hugin1/ptbatcher SUBST_FILES.apple+= src/hugin1/stitch_project/CMakeLists.txt SUBST_SED.apple= -e 's,(APPLE),(ELPPA),g' +.include "../../mk/bsd.prefs.mk" + .include "../../databases/sqlite3/buildlink3.mk" .include "../../devel/boost-headers/buildlink3.mk" .include "../../devel/boost-libs/buildlink3.mk" @@ -43,7 +45,9 @@ SUBST_SED.apple= -e 's,(APPLE),(ELPPA),g .include "../../devel/tclap/buildlink3.mk" .include "../../graphics/exiv2/buildlink3.mk" .include "../../graphics/glew/buildlink3.mk" +.if ${OPSYS} != "Darwin" .include "../../graphics/glut/buildlink3.mk" +.endif .include "../../graphics/gnome-icon-theme/buildlink3.mk" .include "../../graphics/lensfun/buildlink3.mk" .include "../../graphics/lcms2/buildlink3.mk" --_----------=_150601931134750--