Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/ksh: ChangeLog ksh-93.20080725.ebuild ksh-93.20040229.ebuild
Date: Thu, 02 Oct 2008 02:59:34
Message-Id: E1KlEPb-0005gu-De@stork.gentoo.org
1 darkside 08/10/02 02:59:31
2
3 Modified: ChangeLog
4 Added: ksh-93.20080725.ebuild
5 Removed: ksh-93.20040229.ebuild
6 Log:
7 (non-maintainer commit) version bump app-shells/ksh for bug 230097, simple rename. remove old
8 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo x86_64)
9
10 Revision Changes Path
11 1.36 app-shells/ksh/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/ksh/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/ksh/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/ksh/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-shells/ksh/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 6 Feb 2008 17:50:45 -0000 1.35
24 +++ ChangeLog 2 Oct 2008 02:59:30 -0000 1.36
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-shells/ksh
27 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-shells/ksh/ChangeLog,v 1.35 2008/02/06 17:50:45 nixnut Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-shells/ksh/ChangeLog,v 1.36 2008/10/02 02:59:30 darkside Exp $
30 +
31 +*ksh-93.20080725 (02 Oct 2008)
32 +
33 + 02 Oct 2008; Jeremy Olexa <darkside@g.o> -ksh-93.20040229.ebuild,
34 + +ksh-93.20080725.ebuild:
35 + (non-maintainer commit) version bump app-shells/ksh for bug 230097, simple
36 + rename. remove old
37
38 06 Feb 2008; nixnut <nixnut@g.o> ksh-93.20071105.ebuild:
39 stable on ppc wrt bug #140705
40
41
42
43 1.1 app-shells/ksh/ksh-93.20080725.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/ksh/ksh-93.20080725.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/ksh/ksh-93.20080725.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ksh-93.20080725.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-shells/ksh/ksh-93.20080725.ebuild,v 1.1 2008/10/02 02:59:30 darkside Exp $
53
54 inherit eutils flag-o-matic toolchain-funcs
55
56 RELEASE="2008-07-25"
57 LOCALE_RELEASE="2008-07-25"
58 INIT_RELEASE="${RELEASE}"
59
60 DESCRIPTION="The Original Korn Shell, 1993 revision (ksh93)"
61 HOMEPAGE="http://www.kornshell.com/"
62 SRC_URI="nls? ( mirror://gentoo/ast-ksh-locale.${LOCALE_RELEASE}.tgz )
63 mirror://gentoo/INIT.${INIT_RELEASE}.tgz
64 mirror://gentoo/ast-ksh.${RELEASE}.tgz"
65
66 LICENSE="CPL-1.0"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
69 IUSE="nls"
70
71 DEPEND="!app-shells/pdksh"
72
73 S=${WORKDIR}
74
75 src_unpack() {
76 # the AT&T build tools look in here for packages.
77 mkdir -p ${S}/lib/package/tgz
78
79 # move the packages into place.
80 cp ${DISTDIR}/ast-ksh.${RELEASE}.tgz ${S}/lib/package/tgz/ || die
81
82 if use nls; then
83 cp ${DISTDIR}/ast-ksh-locale.${LOCALE_RELEASE}.tgz ${S}/lib/package/tgz/ || die
84 fi
85
86 # INIT provides the basic tools to start building.
87 unpack INIT.${INIT_RELEASE}.tgz
88
89 # `package read` will unpack any tarballs put in place.
90 ${S}/bin/package read || die
91 }
92
93 src_compile() {
94 strip-flags; export CCFLAGS="${CFLAGS}"
95
96 cd ${S}; ./bin/package only make ast-ksh CC="$(tc-getCC)" || die
97
98 # install the optional locale data.
99 if use nls; then
100 cd ${S}; ./bin/package only make ast-ksh-locale CC="$(tc-getCC)"
101 fi
102 }
103
104 src_install() {
105 exeinto /bin
106
107 doexe ${S}/arch/linux.*/bin/ksh || die
108
109 newman ${S}/arch/linux.*/man/man1/sh.1 ksh.1
110
111 dodoc lib/package/LICENSES/ast
112 dohtml lib/package/ast-ksh.html
113
114 if use nls; then
115 dodir /usr/share
116 mv ${S}/share/lib/locale ${D}/usr/share
117 find ${D}/usr/share/locale -type f -name 'LC_TIME' -exec rm -rf {} \; 2>/dev/null
118 fi
119 }