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 A43BF7A168 for ; Wed, 4 Jan 2017 21:17:58 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 14A6C855D2; Wed, 4 Jan 2017 21:17:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A037855BA for ; Wed, 4 Jan 2017 21:17:57 +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 02pgzfIbpbxu for ; Wed, 4 Jan 2017 21:17:57 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 03FF784C86 for ; Wed, 4 Jan 2017 21:17:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F35A2FBA6; Wed, 4 Jan 2017 21:17:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148356467667600" MIME-Version: 1.0 Date: Wed, 4 Jan 2017 21:17:56 +0000 From: "Roy Marples" Subject: CVS commit: pkgsrc/misc/pinfo To: pkgsrc-changes@NetBSD.org Reply-To: roy@netbsd.org X-Mailer: log_accum Message-Id: <20170104211756.F35A2FBA6@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. --_----------=_148356467667600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: roy Date: Wed Jan 4 21:17:56 UTC 2017 Modified Files: pkgsrc/misc/pinfo: Makefile Log Message: Use the curses framework. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/misc/pinfo/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148356467667600 Content-Disposition: inline Content-Length: 1196 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/pinfo/Makefile diff -u pkgsrc/misc/pinfo/Makefile:1.38 pkgsrc/misc/pinfo/Makefile:1.39 --- pkgsrc/misc/pinfo/Makefile:1.38 Tue Aug 18 07:31:13 2015 +++ pkgsrc/misc/pinfo/Makefile Wed Jan 4 21:17:56 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2015/08/18 07:31:13 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2017/01/04 21:17:56 roy Exp $ # DISTNAME= pinfo-0.6.1 @@ -22,17 +22,13 @@ CONF_FILES= ${EGDIR}/pinforc ${PKG_SYSC INFO_FILES= yes INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} sysconfdir=${EGDIR:Q} -PKG_OPTIONS_VAR= PKG_OPTIONS.pinfo -PKG_SUPPORTED_OPTIONS= pinfo-native-curses - -.include "../../mk/bsd.options.mk" +.include "../../devel/gettext-lib/buildlink3.mk" -.if !empty(PKG_OPTIONS:Mpinfo-native-curses) +.include "../../mk/curses.buildlink3.mk" +.if ${CURSES_TYPE} == "curses" CONFIGURE_ARGS+= --with-vcurses -.else -.include "../../devel/ncurses/buildlink3.mk" -CONFIGURE_ARGS+= --with-ncurses=${BUILDLINK_PREFIX.ncurses} +.elif ${CURSES_TYPE} == "ncurses" || ${CURSES_TYPE} == "ncursesw" +CONFIGURE_ARGS+= --with-ncurses=${BUILDLINK_PREFIX.curses} .endif -.include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_148356467667600--