Received: by mail.netbsd.org (Postfix, from userid 605) id 3901A8537A; Sun, 11 Apr 2021 04:30:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6FDAB8537B for ; Sun, 11 Apr 2021 04:30:00 +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 8U_qk4FEZTqr for ; Sun, 11 Apr 2021 04:30:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B664785333 for ; Sun, 11 Apr 2021 04:29:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AE7CDFA95; Sun, 11 Apr 2021 04:29:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1618115399210520" MIME-Version: 1.0 Date: Sun, 11 Apr 2021 04:29:59 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/misc/libreoffice To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20210411042959.AE7CDFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1618115399210520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sun Apr 11 04:29:59 UTC 2021 Modified Files: pkgsrc/misc/libreoffice: Makefile Log Message: libreoffice: reflect xdg-utils dependency for xdg-open command Relates to PR pkg/56092. LibreOffice expects xdg-open to be installed. To generate a diff of this commit: cvs rdiff -u -r1.257 -r1.258 pkgsrc/misc/libreoffice/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1618115399210520 Content-Disposition: inline Content-Length: 1017 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/libreoffice/Makefile diff -u pkgsrc/misc/libreoffice/Makefile:1.257 pkgsrc/misc/libreoffice/Makefile:1.258 --- pkgsrc/misc/libreoffice/Makefile:1.257 Sat Apr 10 13:13:47 2021 +++ pkgsrc/misc/libreoffice/Makefile Sun Apr 11 04:29:59 2021 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.257 2021/04/10 13:13:47 ryoon Exp $ +# $NetBSD: Makefile,v 1.258 2021/04/11 04:29:59 gutteridge Exp $ VERREL= 7.1.2 VERRC= 2 VER= ${VERREL}.${VERRC} DISTNAME= libreoffice-${VER} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= misc MASTER_SITES= http://download.documentfoundation.org/libreoffice/src/${VERREL}/ EXTRACT_SUFX= .tar.xz @@ -146,6 +146,7 @@ WRKSRC= ${WRKDIR}/${LO_BOOTSTRAP} BUILD_DEPENDS+= p5-Archive-Zip-[0-9]*:../../archivers/p5-Archive-Zip DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat +DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils # dmake scripts use relative path with -rpath-link ld arguments, which # is a no-go with normal pkgsrc wrappers. --_----------=_1618115399210520--