From 27c68d69814f2a6fe037af447d4dfe0697264e25 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 28 May 2014 15:13:39 +0000 Subject: Version bump timezone-data to 2014d (fixes bug 510422) (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 30380381) --- sys-libs/timezone-data/ChangeLog | 7 +- sys-libs/timezone-data/timezone-data-2014d.ebuild | 129 ++++++++++++++++++++++ 2 files changed, 135 insertions(+), 1 deletion(-) create mode 100644 sys-libs/timezone-data/timezone-data-2014d.ebuild (limited to 'sys-libs') diff --git a/sys-libs/timezone-data/ChangeLog b/sys-libs/timezone-data/ChangeLog index 3779348a3584..8d982b70dabc 100644 --- a/sys-libs/timezone-data/ChangeLog +++ b/sys-libs/timezone-data/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/timezone-data # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.301 2014/05/15 07:07:02 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.302 2014/05/28 15:13:39 djc Exp $ + +*timezone-data-2014d (28 May 2014) + + 28 May 2014; Dirkjan Ochtman +timezone-data-2014d.ebuild: + Version bump timezone-data to 2014d (fixes bug 510422) 15 May 2014; Dirkjan Ochtman timezone-data-2014a.ebuild: Stabilize timezone-data-2014a for everyone diff --git a/sys-libs/timezone-data/timezone-data-2014d.ebuild b/sys-libs/timezone-data/timezone-data-2014d.ebuild new file mode 100644 index 000000000000..1a3cb424583f --- /dev/null +++ b/sys-libs/timezone-data/timezone-data-2014d.ebuild @@ -0,0 +1,129 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2014d.ebuild,v 1.1 2014/05/28 15:13:39 djc Exp $ + +EAPI="3" + +inherit eutils toolchain-funcs flag-o-matic + +code_ver=${PV} +data_ver=${PV} +DESCRIPTION="Timezone data (/usr/share/zoneinfo) and utilities (tzselect/zic/zdump)" +HOMEPAGE="http://www.iana.org/time-zones http://www.twinsun.com/tz/tz-link.htm" +SRC_URI="http://www.iana.org/time-zones/repository/releases/tzdata${data_ver}.tar.gz + http://www.iana.org/time-zones/repository/releases/tzcode${code_ver}.tar.gz + ftp://munnari.oz.au/pub/oldtz/tzdata${data_ver}.tar.gz + ftp://munnari.oz.au/pub/oldtz/tzcode${data_ver}.tar.gz" + +LICENSE="BSD public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="nls elibc_FreeBSD elibc_glibc" + +RDEPEND="!/dev/null ; then + if [[ -d posix ]] ; then + rm -rf .gentoo-upgrade #487192 + mv posix .gentoo-upgrade || die + ln -s .gentoo-upgrade posix || die + fi + fi +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2013h-makefile.patch + tc-is-cross-compiler && cp -pR "${S}" "${S}"-native +} + +src_compile() { + local LDLIBS + tc-export CC + if use elibc_FreeBSD || use elibc_Darwin ; then + append-cppflags -DSTD_INSPIRED #138251 + fi + export NLS=$(usex nls 1 0) + if use nls && ! use elibc_glibc ; then + LDLIBS+=" -lintl" #154181 + fi + # TOPDIR is used in some utils when compiling. + emake \ + TOPDIR="${EPREFIX}/usr" \ + CFLAGS="${CPPFLAGS} ${CFLAGS} -std=gnu99" \ + LDFLAGS="${LDFLAGS}" \ + LDLIBS="${LDLIBS}" \ + || die + if tc-is-cross-compiler ; then + emake -C "${S}"-native \ + CC=$(tc-getBUILD_CC) \ + CFLAGS="${BUILD_CFLAGS}" \ + LDFLAGS="${BUILD_LDFLAGS}" \ + LDLIBS="${LDLIBS}" \ + zic || die + fi +} + +src_install() { + local zic="" + tc-is-cross-compiler && zic="zic=${S}-native/zic" + emake install ${zic} DESTDIR="${ED}" || die + dodoc README Theory + dohtml *.htm +} + +pkg_config() { + # make sure the /etc/localtime file does not get stale #127899 + local tz src etc_lt="${EROOT}etc/localtime" + + if has_version '