1# $FreeBSD$ 2 3# 4# HOW TO UPDATE THE ZONEINFO DATA 5# 6# Import the new sources to the vendor branch: 7# 8# $ cd ~/freebsd/src 9# $ git worktree add ../tzdata vendor/tzdata 10# $ pushd ../tzdata 11# $ tar -xvf ../tzdata-latest.tar.gz 12# (check with "git status" and "git diff" if it all makes sense) 13# $ git add -A 14# $ git commit -m "Import tzdata 20XXX" 15# $ git tag -a -m "Tag import of tzdata 20XXX" vendor/tzdata/tzdata20XXX 16# $ git push --follow-tags freebsd vendor/tzdata 17# $ popd 18# 19# Merge-from-vendor 20# 21# $ git subtree merge -P contrib/tzdata vendor/tzdata 22# (write a meaningful commit message) 23# $ git push freebsd HEAD:main 24# 25# MFC 26# 27# $ git checkout -b freebsd/stable/12 stable-12 28# $ git cherry-pick -x [hash of merge commit to main] -m 1 --edit 29# (write a meaningful commit message) 30# $ git push freebsd HEAD:stable/12 31# 32 33.include <src.opts.mk> 34 35PACKAGE= zoneinfo 36CLEANDIRS+= builddir 37CONTRIBDIR= ${SRCTOP}/contrib/tzdata/ 38.PATH: ${CONTRIBDIR} 39 40.if defined(LEAPSECONDS) 41.warning Using backwards compatibility variable for LEAPSECONDS; please use WITH_ZONEINFO_LEAPSECONDS_SUPPORT instead 42MK_ZONEINFO_LEAPSECONDS_SUPPORT= yes 43.endif 44 45.if ${MK_ZONEINFO_LEAPSECONDS_SUPPORT} != "no" 46LEAPFILE= -L ${CONTRIBDIR}leapseconds 47.else 48LEAPFILE= 49.endif 50 51TZFILES= africa antarctica asia australasia etcetera europe \ 52 factory northamerica southamerica 53TZFILES+= backward 54 55TZFILES:= ${TZFILES:S/^/${CONTRIBDIR}/} 56 57TZBUILDDIR= ${.OBJDIR}/builddir 58TZBUILDSUBDIRS= \ 59 Africa \ 60 America/Argentina \ 61 America/Indiana \ 62 America/Kentucky \ 63 America/North_Dakota \ 64 Antarctica \ 65 Arctic \ 66 Asia \ 67 Atlantic \ 68 Australia \ 69 Etc \ 70 Europe \ 71 Indian \ 72 Pacific 73TZBUILDSUBDIRS+= US Mexico Chile Canada Brazil 74 75.if !defined(_SKIP_BUILD) 76all: zoneinfo 77.endif 78META_TARGETS+= zoneinfo install-zoneinfo 79 80# 81# Produce “fat” zoneinfo files for backward compatibility. 82# 83ZICFLAGS?= -b fat 84 85.if ${MK_DIRDEPS_BUILD} == "yes" 86ZIC= ${STAGE_HOST_OBJTOP}/usr/sbin/zic 87.endif 88 89zoneinfo: ${TDATA} 90 mkdir -p ${TZBUILDDIR} 91 cd ${TZBUILDDIR}; mkdir -p ${TZBUILDSUBDIRS} 92 umask 022; cd ${.CURDIR}; \ 93 ${ZIC:Uzic} -D -d ${TZBUILDDIR} ${ZICFLAGS} -m ${NOBINMODE} \ 94 ${LEAPFILE} ${TZFILES} 95 96# 97# Sort TZS to ensure they are the same every build. find -s might 98# be a shorter way to express this, but it's non-portable. Any 99# differences between the two don't matter for this purpose. 100# 101.if make(*install*) 102TZS!= cd ${TZBUILDDIR} && find * -type f | LC_ALL=C sort 103.endif 104 105beforeinstall: install-zoneinfo 106install-zoneinfo: 107 mkdir -p ${DESTDIR}/usr/share/zoneinfo 108 cd ${DESTDIR}/usr/share/zoneinfo; mkdir -p ${TZBUILDSUBDIRS} 109.for f in ${TZS} 110 ${INSTALL} ${TAG_ARGS} \ 111 -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ 112 ${TZBUILDDIR}/${f} ${DESTDIR}/usr/share/zoneinfo/${f} 113.endfor 114 ${INSTALL} ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ 115 ${CONTRIBDIR}/zone.tab ${DESTDIR}/usr/share/zoneinfo/ 116 ${INSTALL} ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ 117 ${CONTRIBDIR}/zone1970.tab ${DESTDIR}/usr/share/zoneinfo/ 118 119afterinstall: 120# 121# If the file /var/db/zoneinfo exists, and it is owned by root:wheel, 122# and the contents of it exists in /usr/share/zoneinfo, then reinstall 123# it. 124# 125 @if [ -f ${DESTDIR}/var/db/zoneinfo -a -O ${DESTDIR}/var/db/zoneinfo \ 126 -a -G ${DESTDIR}/var/db/zoneinfo ]; then \ 127 zf=$$(cat ${DESTDIR}/var/db/zoneinfo); \ 128 if [ -f ${DESTDIR}/usr/share/zoneinfo/$${zf} ]; then \ 129 if [ ! -z "${DESTDIR}" ]; then \ 130 optC="-C ${DESTDIR}"; \ 131 fi; \ 132 echo "Updating /etc/localtime"; \ 133 tzsetup $${optC} -r; \ 134 fi; \ 135 else \ 136 echo "Run tzsetup(8) manually to update /etc/localtime."; \ 137 fi 138 139HAS_TESTS= 140SUBDIR.${MK_TESTS}+= tests 141 142.include <bsd.prog.mk> 143