[notify] tzdata: update to 2016a

Note:
-----

Support for accessing posix/ and right/ directly has been dropped to
match upstream. There is no need to set TIMEZONE=posix/xxx as it is the
same as TIMEZONE=xxx in /etc/rc.conf.

For TIMEZONE=right/, you can use TIMEZONE=../zoneinfo-leaps/xxx instead.

See this post for details:
https://mm.icann.org/pipermail/tz/2015-February/022024.html
This commit is contained in:
Juergen Daubert 2016-01-29 15:20:16 +01:00
parent 00117d376c
commit 4af8a40e49
3 changed files with 625 additions and 1221 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,2 @@
19986ddaf9ce3bec9f15079cfeb38646 tzcode-makefile.patch
a2c47d908a6426f530efb1393cf1cd06 tzcode2015g.tar.gz
8d46e8b225b9a04c75f5c39636435ad6 tzdata2015g.tar.gz
f5e0299925631da7cf82d8ce1205111d tzcode2016a.tar.gz
0d3123eb1b453ec0620822bd65be4c42 tzdata2016a.tar.gz

View File

@ -3,14 +3,25 @@
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=tzdata
version=2015g
version=2016a
release=1
source=(http://www.iana.org/time-zones/repository/releases/$name$version.tar.gz
http://www.iana.org/time-zones/repository/releases/tzcode$version.tar.gz
tzcode-makefile.patch)
http://www.iana.org/time-zones/repository/releases/tzcode$version.tar.gz)
build() {
patch -p1 -i $SRC/tzcode-makefile.patch
make CFLAGS="$CFLAGS"
make DESTDIR=$PKG MANDIR=/usr/share/man install
make install \
CFLAGS="$CFLAGS" \
DESTDIR=$PKG \
TOPDIR=/usr \
TZDIR=/usr/share/zoneinfo \
ETCDIR=/usr/sbin \
MANDIR=/usr/share/man
# provided by man-pages
rm -r $PKG/usr/share/man/man{5,8}
# move tzselect to /usr/bin
install -d $PKG/usr/bin
mv $PKG/usr/{sbin/tzselect,bin}
}