7c6ec4c369
the tzdata distribution but is not installed in NetBSD to /usr/share/zoneinfo. Sorry for that hack, but it looks still better for me than the alternatives which are (a) hacking ugly code in evolution or (b) duplication of the whole zoneinfo tree into pkgsrc. This is NetBSD only for now; while it might be useful for other platforms which don't install zone.tab, the /usr/share/zoneinfo path is hardwired and needs to be verified individually.
11 lines
254 B
Text
11 lines
254 B
Text
#!/bin/sh
|
|
# $NetBSD: INSTALL,v 1.1.1.1 2007/11/03 21:46:38 drochner Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
if [ ! -e /usr/share/zoneinfo/zone.tab ]; then
|
|
/usr/bin/install ${PREFIX}/share/examples/zoneinfo/zone.tab \
|
|
/usr/share/zoneinfo
|
|
fi
|
|
;;
|
|
esac
|