Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g.ebuild
Date: Thu, 09 Oct 2008 05:41:51
Message-Id: E1KnoHC-0001oe-1X@stork.gentoo.org
1 vapier 08/10/09 05:41:30
2
3 Modified: ChangeLog
4 Added: timezone-data-2008g.ebuild
5 Log:
6 Version bump #240283 by Rodrigo Severo.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)
8
9 Revision Changes Path
10 1.149 sys-libs/timezone-data/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.149&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.149&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.148&r2=1.149
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
19 retrieving revision 1.148
20 retrieving revision 1.149
21 diff -u -r1.148 -r1.149
22 --- ChangeLog 17 Sep 2008 09:25:39 -0000 1.148
23 +++ ChangeLog 9 Oct 2008 05:41:29 -0000 1.149
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-libs/timezone-data
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.148 2008/09/17 09:25:39 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.149 2008/10/09 05:41:29 vapier Exp $
29 +
30 +*timezone-data-2008g (09 Oct 2008)
31 +
32 + 09 Oct 2008; Mike Frysinger <vapier@g.o>
33 + +timezone-data-2008g.ebuild:
34 + Version bump #240283 by Rodrigo Severo.
35
36 *timezone-data-2008f (17 Sep 2008)
37
38
39
40
41 1.1 sys-libs/timezone-data/timezone-data-2008g.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g.ebuild?rev=1.1&content-type=text/plain
45
46 Index: timezone-data-2008g.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g.ebuild,v 1.1 2008/10/09 05:41:29 vapier Exp $
51
52 inherit eutils toolchain-funcs flag-o-matic
53
54 code_ver=${PV}
55 data_ver=${PV}
56 DESCRIPTION="Timezone data (/usr/share/zoneinfo) and utilities (tzselect/zic/zdump)"
57 HOMEPAGE="ftp://elsie.nci.nih.gov/pub/"
58 SRC_URI="ftp://elsie.nci.nih.gov/pub/tzdata${data_ver}.tar.gz
59 ftp://elsie.nci.nih.gov/pub/tzcode${code_ver}.tar.gz
60 mirror://gentoo/tzdata${data_ver}.tar.gz
61 mirror://gentoo/tzcode${code_ver}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
66 IUSE="nls elibc_FreeBSD elibc_glibc"
67
68 DEPEND=""
69
70 S=${WORKDIR}
71
72 src_unpack() {
73 unpack ${A}
74 epatch "${FILESDIR}"/${PN}-2005n-makefile.patch
75 tc-is-cross-compiler && cp -pR "${S}" "${S}"-native
76 }
77
78 src_compile() {
79 tc-export CC
80 use elibc_FreeBSD && append-flags -DSTD_INSPIRED #138251
81 if use nls ; then
82 use elibc_glibc || append-ldflags -lintl #154181
83 export NLS=1
84 else
85 export NLS=0
86 fi
87 emake || die "emake failed"
88 if tc-is-cross-compiler ; then
89 emake -C "${S}"-native CC=$(tc-getBUILD_CC) CFLAGS="${BUILD_CFLAGS}" zic || die
90 fi
91 }
92
93 src_install() {
94 local zic=""
95 tc-is-cross-compiler && zic="zic=${S}-native/zic"
96 emake install ${zic} DESTDIR="${D}" || die
97 rm -rf "${D}"/usr/share/zoneinfo-leaps
98 dodoc README Theory
99 dohtml *.htm *.jpg
100 }
101
102 pkg_config() {
103 # make sure the /etc/localtime file does not get stale #127899
104 local tz src
105
106 if has_version '<sys-apps/baselayout-2' ; then
107 src="/etc/conf.d/clock"
108 tz=$(unset TIMEZONE ; source "${ROOT}"/etc/conf.d/clock ; echo ${TIMEZONE-FOOKABLOIE})
109 else
110 src="/etc/timezone"
111 if [[ -e ${ROOT}/etc/timezone ]] ; then
112 tz=$(<"${ROOT}"/etc/timezone)
113 else
114 tz="FOOKABLOIE"
115 fi
116 fi
117 [[ -z ${tz} ]] && return 0
118
119 if [[ ${tz} == "FOOKABLOIE" ]] ; then
120 elog "You do not have TIMEZONE set in ${src}."
121
122 if [[ ! -e ${ROOT}/etc/localtime ]] ; then
123 cp -f "${ROOT}"/usr/share/zoneinfo/Factory "${ROOT}"/etc/localtime
124 elog "Setting /etc/localtime to Factory."
125 else
126 elog "Skipping auto-update of /etc/localtime."
127 fi
128 return 0
129 fi
130
131 if [[ ! -e ${ROOT}/usr/share/zoneinfo/${tz} ]] ; then
132 elog "You have an invalid TIMEZONE setting in ${src}"
133 elog "Your /etc/localtime has been reset to Factory; enjoy!"
134 tz="Factory"
135 fi
136 einfo "Updating /etc/localtime with /usr/share/zoneinfo/${tz}"
137 [[ -L ${ROOT}/etc/localtime ]] && rm -f "${ROOT}"/etc/localtime
138 cp -f "${ROOT}"/usr/share/zoneinfo/"${tz}" "${ROOT}"/etc/localtime
139 }
140
141 pkg_postinst() {
142 pkg_config
143 }