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 CD6287A1BE for ; Tue, 7 Mar 2017 10:43:06 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4406B85721; Tue, 7 Mar 2017 10:43:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C96978571A for ; Tue, 7 Mar 2017 10:43:05 +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 jFFrV9lD7SgD for ; Tue, 7 Mar 2017 10:43:05 +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 2DCD684CDA for ; Tue, 7 Mar 2017 10:43:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2931CFBE4; Tue, 7 Mar 2017 10:43:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148888338590060" MIME-Version: 1.0 Date: Tue, 7 Mar 2017 10:43:05 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/time/khal To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170307104305.2931CFBE4@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. --_----------=_148888338590060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Mar 7 10:43:05 UTC 2017 Modified Files: pkgsrc/time/khal: Makefile Log Message: Add comments on how to generate the man page. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/time/khal/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148888338590060 Content-Disposition: inline Content-Length: 1458 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/time/khal/Makefile diff -u pkgsrc/time/khal/Makefile:1.17 pkgsrc/time/khal/Makefile:1.18 --- pkgsrc/time/khal/Makefile:1.17 Mon Mar 6 21:55:53 2017 +++ pkgsrc/time/khal/Makefile Tue Mar 7 10:43:05 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2017/03/06 21:55:53 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2017/03/07 10:43:05 wiz Exp $ DISTNAME= khal-0.9.3 CATEGORIES= time net @@ -24,6 +24,11 @@ DEPENDS+= ${PYPKGPREFIX}-vdirsyncer>=0. DEPENDS+= ${PYPKGPREFIX}-xdg>=0.17:../../devel/py-xdg # not needed, but recommended, so let's just depend on it DEPENDS+= ${PYPKGPREFIX}-setproctitle-[0-9]*:../../sysutils/py-setproctitle +# for the man page, needs khal installed though, see +# https://github.com/pimutils/khal/issues/598 +#USE_TOOLS+= gmake +#BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx +#BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinxcontrib-newsfeed-[0-9]*:../../textproc/py-sphinxcontrib-newsfeed # TEST_DEPENDS BUILD_DEPENDS+= ${PYPKGPREFIX}-freezegun-[0-9]*:../../devel/py-freezegun BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test @@ -34,6 +39,10 @@ INSTALLATION_DIRS= share/doc/khal REPLACE_PYTHON+= khal/*/*.py REPLACE_PYTHON+= khal/*.py +# man page generation, see above +#post-build: +# cd ${WRKSRC}/doc && gmake SPHINXBUILD=sphinx-build${PYVERSSUFFIX} man + post-install: ${INSTALL_DATA} ${WRKSRC}/khal.conf.sample ${DESTDIR}${PREFIX}/share/doc/khal --_----------=_148888338590060--