Fri Aug 18 01:14:32 2017 UTC ()
time/hebcal: Fix empty installed GNU info file.

The distributed GNU info file is an empty file. Remove it after
extracting the files so that make(1) will rebuild it as part of
the "all" target.

Bump the PKGREVISION due to a change in the installed GNU info
file.


(jlam)
diff -r1.9 -r1.10 pkgsrc/time/hebcal/Makefile

cvs diff -r1.9 -r1.10 pkgsrc/time/hebcal/Makefile (expand / switch to unified diff)

--- pkgsrc/time/hebcal/Makefile 2016/07/09 06:39:08 1.9
+++ pkgsrc/time/hebcal/Makefile 2017/08/18 01:14:32 1.10
@@ -1,22 +1,28 @@ @@ -1,22 +1,28 @@
1# $NetBSD: Makefile,v 1.9 2016/07/09 06:39:08 wiz Exp $ 1# $NetBSD: Makefile,v 1.10 2017/08/18 01:14:32 jlam Exp $
2# 2#
3 3
4DISTNAME= hebcal-3.11 4DISTNAME= hebcal-3.11
5PKGREVISION= 2 5PKGREVISION= 3
6CATEGORIES= time 6CATEGORIES= time
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hebcal/} 7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hebcal/}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://hebcal.sourceforge.net/ 10HOMEPAGE= http://hebcal.sourceforge.net/
11COMMENT= Perpetual Hebrew calendar 11COMMENT= Perpetual Hebrew calendar
12LICENSE= gnu-gpl-v2 12LICENSE= gnu-gpl-v2
13 13
14INFO_FILES= yes 14INFO_FILES= yes
15 15
16GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes
17USE_TOOLS+= gmake 17USE_TOOLS+= gmake
18USE_TOOLS+= perl 18USE_TOOLS+= perl
19USE_TOOLS+= m4 19USE_TOOLS+= m4
20USE_TOOLS+= makeinfo 20USE_TOOLS+= makeinfo
21 21
 22# Remove an empty hebcal.info file to force it to be generated
 23# properly during the build.
 24#
 25post-extract:
 26 ${RUN}${RM} -f ${WRKSRC}/doc/*.info
 27
22.include "../../mk/bsd.pkg.mk" 28.include "../../mk/bsd.pkg.mk"