Sat Jan 9 03:10:45 2016 UTC ()
the scripts.sil.org site is using ViewVC to dynamically generate a
new .tar.gz for each download.   each new .tar.gz has a new gzip
timestamp, so the gz is different each download (the tar itself is
the same).  this makes it impossible to match the checksum in distinfo,
so we pull it from a static file on MASTER_SITE_BACKUP instead,
as suggested by Thomas Klausner.


(chuck)
diff -r1.6 -r1.7 pkgsrc/converters/TECkit/Makefile

cvs diff -r1.6 -r1.7 pkgsrc/converters/TECkit/Makefile (expand / switch to unified diff)

--- pkgsrc/converters/TECkit/Makefile 2015/06/14 10:01:41 1.6
+++ pkgsrc/converters/TECkit/Makefile 2016/01/09 03:10:45 1.7
@@ -1,19 +1,26 @@ @@ -1,19 +1,26 @@
1# $NetBSD: Makefile,v 1.6 2015/06/14 10:01:41 markd Exp $ 1# $NetBSD: Makefile,v 1.7 2016/01/09 03:10:45 chuck Exp $
2 2
3DISTNAME= TECkit_2.5.3 3DISTNAME= TECkit_2.5.3
4PKGNAME= ${DISTNAME:S/_/-/} 4PKGNAME= ${DISTNAME:S/_/-/}
5CATEGORIES= converters 5CATEGORIES= converters
6MASTER_SITES= http://scripts.sil.org/svn-view/teckit/TAGS/ 6#
 7# scripts.sil.org is using ViewVC to dynamically generate a new .tar.gz.
 8# each .tar.gz has a new gzip timestamp, so its different each download.
 9# this makes it impossible to match checksum in distinfo, so we pull it
 10# from a static file on MASTER_SITE_BACKUP instead.
 11#
 12#MASTER_SITES= http://scripts.sil.org/svn-view/teckit/TAGS/
 13MASTER_SITES= ${MASTER_SITE_BACKUP}
7 14
8MAINTAINER= minskim@NetBSD.org 15MAINTAINER= minskim@NetBSD.org
9HOMEPAGE= http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&cat_id=TECkit 16HOMEPAGE= http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&cat_id=TECkit
10COMMENT= Low-level toolkit to perform encoding conversions 17COMMENT= Low-level toolkit to perform encoding conversions
11LICENSE= gnu-lgpl-v2.1 OR cpl-1.0 18LICENSE= gnu-lgpl-v2.1 OR cpl-1.0
12 19
13GNU_CONFIGURE= yes 20GNU_CONFIGURE= yes
14USE_LIBTOOL= yes 21USE_LIBTOOL= yes
15USE_LANGUAGES= c c++ 22USE_LANGUAGES= c c++
16USE_TOOLS+= autoconf automake 23USE_TOOLS+= autoconf automake
17 24
18PKGCONFIG_OVERRIDE= teckit.pc.in 25PKGCONFIG_OVERRIDE= teckit.pc.in
19 26