Received: by mail.netbsd.org (Postfix, from userid 605) id A603284D78; Mon, 11 Feb 2019 22:01:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2BE2384D76 for ; Mon, 11 Feb 2019 22:01:19 +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 5j9HaobqTBGZ for ; Mon, 11 Feb 2019 22:01:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AB52784D22 for ; Mon, 11 Feb 2019 22:01:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A5DDCFB16; Mon, 11 Feb 2019 22:01:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_154992247822590" MIME-Version: 1.0 Date: Mon, 11 Feb 2019 22:01:18 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/math/sc-im To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20190211220118.A5DDCFB16@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. --_----------=_154992247822590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Mon Feb 11 22:01:18 UTC 2019 Modified Files: pkgsrc/math/sc-im: Makefile options.mk Log Message: sc-im: Add xls option and add it to suggested option Bump PKGREVISION. Patch provided by Sijmen J. Mulder via tech-pkg@, thanks! To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/sc-im/Makefile \ pkgsrc/math/sc-im/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_154992247822590 Content-Disposition: inline Content-Length: 1430 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/sc-im/Makefile diff -u pkgsrc/math/sc-im/Makefile:1.1 pkgsrc/math/sc-im/Makefile:1.2 --- pkgsrc/math/sc-im/Makefile:1.1 Wed Jan 30 12:58:24 2019 +++ pkgsrc/math/sc-im/Makefile Mon Feb 11 22:01:18 2019 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2019/01/30 12:58:24 leot Exp $ +# $NetBSD: Makefile,v 1.2 2019/02/11 22:01:18 leot Exp $ DISTNAME= sc-im-0.7.0 +PKGREVISION= 1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GITHUB:=andmarti1424/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/math/sc-im/options.mk diff -u pkgsrc/math/sc-im/options.mk:1.1 pkgsrc/math/sc-im/options.mk:1.2 --- pkgsrc/math/sc-im/options.mk:1.1 Wed Jan 30 12:58:24 2019 +++ pkgsrc/math/sc-im/options.mk Mon Feb 11 22:01:18 2019 @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.1 2019/01/30 12:58:24 leot Exp $ +# $NetBSD: options.mk,v 1.2 2019/02/11 22:01:18 leot Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.sc-im -PKG_SUPPORTED_OPTIONS+= color xlsx lua -PKG_SUGGESTED_OPTIONS+= color xlsx lua +PKG_SUPPORTED_OPTIONS+= color xls xlsx lua +PKG_SUGGESTED_OPTIONS+= color xls xlsx lua .include "../../mk/bsd.options.mk" @@ -10,6 +10,12 @@ PKG_SUGGESTED_OPTIONS+= color xlsx lua CFLAGS+= -DUSECOLORS .endif +.if !empty(PKG_OPTIONS:Mxls) +CFLAGS+= -DXLS +LDFLAGS+= -lxlsreader +.include "../../textproc/libxls/buildlink3.mk" +.endif + .if !empty(PKG_OPTIONS:Mxlsx) CFLAGS+= -DXLSX -DXLSX_EXPORT LDFLAGS+= -lxlsxwriter --_----------=_154992247822590--