mirror of
http://git.openwrt.org/packages.git
synced 2025-01-09 04:19:54 +08:00
zoneinfo: moved to github
Signed-off-by: Steven Barth <steven@midlink.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@43225 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e840bf9361
commit
d2c40e0cfc
@ -1,254 +0,0 @@
|
||||
#
|
||||
# Copyright (C) 2007-2011 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
# Author: Michael Geddes
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=zoneinfo
|
||||
PKG_VERSION:=2011n
|
||||
PKG_VERSION_CODE:=2011i
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=tzdata$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_CODE:=tzcode$(PKG_VERSION_CODE).tar.gz
|
||||
PKG_SOURCE_URL:=http://www.iana.org/time-zones/repository/releases
|
||||
PKG_MD5SUM:=20dbfb28efa008ddbf6dd34601ea40fa
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Download/tzcode
|
||||
FILE=$(PKG_SOURCE_CODE)
|
||||
URL=$(PKG_SOURCE_URL)
|
||||
MD5SUM=cf7f4335b7c8682899fa2814e711c1b2
|
||||
endef
|
||||
|
||||
$(eval $(call Download,tzcode))
|
||||
|
||||
define Package/zoneinfo/Default
|
||||
SUBMENU:=zoneinfo
|
||||
TITLE:=Zone Information
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-core
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (core)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-simple
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (simple)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-africa
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (Africa)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-northamerica
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (NorthAmerica)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-southamerica
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (SouthAmerica)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-poles
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (Arctic, Antarctic)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-asia
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (Asia)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-atlantic
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (Atlantic)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-australia-nz
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (Australia-NZ)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-pacific
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (Pacific)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-europe
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (Europe)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-india
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (India)
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-middleeast
|
||||
$(call Package/zoneinfo/Default)
|
||||
TITLE:=Zone Information (MiddleEast)
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
(cd $(PKG_BUILD_DIR) && tar -xzf $(DL_DIR)/$(PKG_SOURCE_CODE) && tar -xzf $(DL_DIR)/$(PKG_SOURCE))
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
CFLAGS="$(HOST_CFLAGS)" \
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) -f Makefile \
|
||||
$(HOST_CONFIGURE_OPTS) \
|
||||
CC="$(HOSTCC)" \
|
||||
LD="\$$$$(CC)" \
|
||||
CPPFLAGS="$(HOST_CPPFLAGS)" \
|
||||
LDFLAGS="$(HOST_LDFLAGS)" \
|
||||
TOPDIR="$(PKG_INSTALL_DIR)" \
|
||||
TZDIR="$(PKG_INSTALL_DIR)/zoneinfo" \
|
||||
install
|
||||
endef
|
||||
|
||||
|
||||
define Package/zoneinfo-core/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in \
|
||||
CET CST6CDT EET EST EST5EDT GB-Eire Eire \
|
||||
GB GMT GMT+0 GMT-0 GMT0 Greenwich \
|
||||
HST MET MST MST7MDT \
|
||||
PRC PST8PDT ROC ROK UCT UTC \
|
||||
Universal W-SU WET Zulu Etc/* zone.tab ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-simple/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Pacific/Honolulu \
|
||||
America/Anchorage America/Los_Angeles America/Denver \
|
||||
America/Chicago America/New_York America/Caracas \
|
||||
America/Sao_Paulo Europe/London Europe/Paris \
|
||||
Africa/Cairo Europe/Moscow Asia/Dubai \
|
||||
Asia/Karachi Asia/Dhaka Asia/Bankok \
|
||||
Asia/Hong_Kong Asia/Tokyo Australia/Darwin \
|
||||
Australia/Adelaide Australia/Brisbane Australia/Sydney \
|
||||
Australia/Perth Pacific/Noumea ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-africa/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo/Africa
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/Africa/* \
|
||||
$(1)/usr/share/zoneinfo/Africa
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-northamerica/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in US America Canada Mexico Cuba Jamaica Navajo ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
rm -rf $(1)/usr/share/zoneinfo/America/Argentina
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-southamerica/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Brazil Chile ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo/America/Argentina
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/America/Argentina/* \
|
||||
$(1)/usr/share/zoneinfo/America/Argentina
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-poles/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Antarctica Arctic ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-asia/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Asia Japan Singapore Hongkong ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-atlantic/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Atlantic Iceland ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-australia-nz/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in NZ NZ-CHAT Australia ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-pacific/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Pacific Kwajalein ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-europe/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Europe Portugal Poland ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
|
||||
define Package/zoneinfo-india/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Indian ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
define Package/zoneinfo-middleeast/install
|
||||
$(INSTALL_DIR) $(1)/usr/share/zoneinfo
|
||||
for i in Egypt Libya Iran Israel Turkey Mideast ; do \
|
||||
$(CP) $(PKG_INSTALL_DIR)/zoneinfo/$$$$i \
|
||||
$(1)/usr/share/zoneinfo ; \
|
||||
done
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,zoneinfo-simple))
|
||||
$(eval $(call BuildPackage,zoneinfo-core))
|
||||
$(eval $(call BuildPackage,zoneinfo-africa))
|
||||
$(eval $(call BuildPackage,zoneinfo-northamerica))
|
||||
$(eval $(call BuildPackage,zoneinfo-southamerica))
|
||||
$(eval $(call BuildPackage,zoneinfo-poles))
|
||||
$(eval $(call BuildPackage,zoneinfo-asia))
|
||||
$(eval $(call BuildPackage,zoneinfo-atlantic))
|
||||
$(eval $(call BuildPackage,zoneinfo-australia-nz))
|
||||
$(eval $(call BuildPackage,zoneinfo-pacific))
|
||||
$(eval $(call BuildPackage,zoneinfo-europe))
|
||||
$(eval $(call BuildPackage,zoneinfo-india))
|
||||
$(eval $(call BuildPackage,zoneinfo-middleeast))
|
||||
|
Loading…
Reference in New Issue
Block a user