]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - share/zoneinfo/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / share / zoneinfo / Makefile
1 # $FreeBSD$
2
3 #
4 # HOW TO UPDATE THE ZONEINFO DATA
5 #
6 # With the use of subversion, this is a little bit simpler than the CVS method.
7 #
8 # Import the new sources to the vendor branch:
9 #
10 # $ cd ~/svn/vendor/tzdata/dist
11 # $ tar zxvf /usr/ports/distfile/tzdata2008X.tar.gz
12 #   (check with "svn stat" and "svn diff" if it all makes sense)
13 # $ svn commit  # Commit message: "Vendor import of tzdata2008X (+details)" 
14 #
15 # Tag it
16 #
17 # $ cd ~/svn/vendor/tzdata
18 # $ svn cp svn+ssh://svn.freebsd.org/base/vendor/tzdata/dist \
19 #       svn+ssh://svn.freebsd.org/base/vendor/tzdata/tzdata2008X
20 # $ svn update  # Commit message: "Tag of tzdata2008X"
21 #
22 # Merge-from-vendor
23 #
24 # $ cd ~/svn/head/share/zoneinfo
25 # $ svn update
26 # $ svn merge -c X --accept=postpone \
27 #       svn+ssh://svn.freebsd.org/base/vendor/tzdata/dist .
28 # $ svn update  # Commit message: "MFV of tzdata2008X"
29 #
30
31 CLEANFILES+=    yearistype
32 CLEANDIRS+=     builddir
33 CONTRIBDIR=     ${.CURDIR}/../../contrib/tzdata/
34 .PATH:          ${CONTRIBDIR}
35
36 .if defined(LEAPSECONDS)
37 LEAPFILE=       -L leapseconds
38 .else
39 LEAPFILE=
40 .endif
41
42 TZFILES=        africa antarctica asia australasia etcetera europe \
43                 factory northamerica southamerica
44 POSIXRULES=     America/New_York
45
46 .if defined(OLDTIMEZONES)
47 TZFILES+=       backward systemv
48 .endif
49
50 TZFILES:=       ${TZFILES:S/^/${CONTRIBDIR}/}
51
52 TZBUILDDIR=     ${.OBJDIR}/builddir
53 TZBUILDSUBDIRS= \
54                 Africa \
55                 America/Argentina \
56                 America/Indiana \
57                 America/Kentucky \
58                 America/North_Dakota \
59                 Antarctica \
60                 Arctic \
61                 Asia \
62                 Atlantic \
63                 Australia \
64                 Etc \
65                 Europe \
66                 Indian \
67                 Pacific \
68                 SystemV
69
70 all: zoneinfo
71
72 .PHONY: zoneinfo
73 zoneinfo: yearistype ${TDATA}
74         mkdir -p ${TZBUILDDIR}
75         cd ${TZBUILDDIR}; mkdir -p ${TZBUILDSUBDIRS}
76         umask 022; cd ${.CURDIR}; \
77         zic -D -d ${TZBUILDDIR} -p ${POSIXRULES} -m ${NOBINMODE} \
78             ${LEAPFILE} -y ${.OBJDIR}/yearistype ${TZFILES}
79
80 beforeinstall:
81         cd ${TZBUILDDIR} && \
82             find . -type f -print -exec ${INSTALL} \
83             -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
84             \{} ${DESTDIR}/usr/share/zoneinfo/\{} \;
85         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
86             ${CONTRIBDIR}/zone.tab ${DESTDIR}/usr/share/zoneinfo/
87
88 afterinstall:
89 #
90 # If the file /var/db/zoneinfo exists, and it is owned by root:wheel,
91 # and the contents of it exists in /usr/share/zoneinfo, then reinstall
92 # it.
93 #
94         @if [ -f ${DESTDIR}/var/db/zoneinfo -a -O ${DESTDIR}/var/db/zoneinfo \
95             -a -G ${DESTDIR}/var/db/zoneinfo ]; then \
96                 zf=$$(cat ${DESTDIR}/var/db/zoneinfo); \
97                 if [ -f ${DESTDIR}/usr/share/zoneinfo/$${zf} ]; then \
98                         if [ ! -z "${DESTDIR}" ]; then \
99                                 optC="-C ${DESTDIR}"; \
100                         fi; \
101                         echo "Updating /etc/localtime"; \
102                         tzsetup $${optC} -r; \
103                 fi; \
104         else \
105                 echo "Run tzsetup(8) manually to update /etc/localtime."; \
106         fi
107
108 .include <bsd.prog.mk>