diff options
author | edwin <edwin@FreeBSD.org> | 2007-12-12 04:14:16 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-12-12 04:14:16 +0800 |
commit | f63833688b079cda7bd8274f1bc02c986cdf9f4b (patch) | |
tree | 69163da6b96f955e2f658ccd774d87e310198cf6 /misc/zoneinfo/Makefile | |
parent | 04074f0e451a24ef5e357f7f8f6f665c1f6cc42a (diff) | |
download | freebsd-ports-gnome-f63833688b079cda7bd8274f1bc02c986cdf9f4b.tar.gz freebsd-ports-gnome-f63833688b079cda7bd8274f1bc02c986cdf9f4b.tar.zst freebsd-ports-gnome-f63833688b079cda7bd8274f1bc02c986cdf9f4b.zip |
Update to 2007j
PR: ports/118409
Submitted by: Edwin Groothuis <edwin@mavetju.org>
Diffstat (limited to 'misc/zoneinfo/Makefile')
-rw-r--r-- | misc/zoneinfo/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/misc/zoneinfo/Makefile b/misc/zoneinfo/Makefile index daf47449ca49..5bd57372d910 100644 --- a/misc/zoneinfo/Makefile +++ b/misc/zoneinfo/Makefile @@ -5,8 +5,7 @@ # $FreeBSD$ PORTNAME= zoneinfo -DISTVERSION= 2007h -PORTREVISION= 1 +DISTVERSION= 2007j CATEGORIES= misc MASTER_SITES= ftp://elsie.nci.nih.gov/pub/ DISTNAME= tzdata${DISTVERSION} @@ -36,14 +35,16 @@ MASTER_SITES+= http://people.freebsd.org/~edwin/ # The following country codes can be missing from /usr/share/misc/iso3166 and # shouldn't appear in the zoneinfo file. -MISSING= ax gg im je me rs +MISSING= ax bl gg im je me mf rs +.ifndef NOMISSING .for M in ${MISSING} HAS_${M:U}!= ${GREP} -c ^${M:U} /usr/share/misc/iso3166 || ${TRUE} .if ${HAS_${M:U}} == "0" EXTRA_PATCHES+= ${FILESDIR}/patchremove-${M} .endif .endfor +.endif do-build: umask 022; \ @@ -62,7 +63,7 @@ post-install: test-patches: .for M in ${MISSING} make clean - EXTRA_PATCHES=${FILESDIR}/patchremove-${M} make patch + NOMISSING=1 EXTRA_PATCHES=${FILESDIR}/patchremove-${M} make patch .endfor .include <bsd.port.post.mk> |