summaryrefslogtreecommitdiff
blob: e6d9cb25471cfcc4e6efe79e93b2a5b733c51852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/ksh/ksh-93.20030422.ebuild,v 1.1 2003/05/29 03:57:33 taviso Exp $

RELEASE="2003-04-22"
DESCRIPTION="The Original Korn Shell, 1993 revision (ksh93)."
HOMEPAGE="http://www.kornshell.com/"

inherit ccc eutils 

SRC_URI="http://www.research.att.com/~gsf/download/tgz/INIT.${RELEASE}.tgz
	http://www.research.att.com/~gsf/download/tgz/ast-ksh.${RELEASE}.tgz
	http://www.research.att.com/~gsf/download/tgz/ast-ksh-locale.${RELEASE}.tgz"

LICENSE="ATT"
SLOT="0"
KEYWORDS="~x86 ~alpha"

IUSE="static nls"

DEPEND="virtual/glibc
	>=sys-apps/sed-4
	!app-shells/pdksh"
RDEPEND="virtual/glibc"

S=${WORKDIR}

src_unpack() {
	# the AT&T build tools look in here for packages.
	mkdir -p ${S}/lib/package/tgz
	
	# move the packages into place.
	cp ${DISTDIR}/ast-ksh.${RELEASE}.tgz ${S}/lib/package/tgz/ || die
	use nls && {
		cp ${DISTDIR}/ast-ksh-locale.${RELEASE}.tgz ${S}/lib/package/tgz/ || die
	}

	# INIT provides the basic tools to start building.
	cd ${S}; unpack INIT.${RELEASE}.tgz || die

	# `package read` will unpack any tarballs put in place.
	${S}/bin/package read || die
}

src_compile() {
	# users who prefer ksh as there regular shell 
	# may want to make it static, so it can be used
	# in the event of fs failure, for example
	# where shared libraries are not available
	use static && append-ldflags -static

	# just a quick message for any users who inadvertantly
	# typed `emerge ksh` but actually wanted `emerge pdksh`
	ewarn "This ebuild will install the original AT&T Korn Shell"
	ewarn "By David Korn, if you were looking for PDKSH, the Public"
	ewarn "Domain Korn SHell, please cancel this emerge and then"
	ewarn "emerge pdksh."
	sleep 3

	# set the optimisations for the build process
	export CCFLAGS="${CFLAGS}"
	cd ${S}; ./bin/package only make ast-ksh CC=${CC:-gcc} || true

	# if we set any optimisations, linking will fail.
	# but this isnt a problem, the optimisations will have already
	# been applied to the object files, we just need to link
	# them.
	einfo "Dont worry about any linker errors above, i need to rerun"
	einfo "the build to complete the linking process..."
	sleep 2 ; unset CCFLAGS

	# re-run to finish linking.
	./bin/package only make ast-ksh CC=${CC:-gcc} || die "sorry, build failed."

	# install the optional locale data.
	# heh, check out locale fudd, or piglatin :)
	#
	# "Too many symbowic winks in paf name twavewsal"
	
	# david korn is a funny guy! :)
	use nls && {
		cd ${S}; ./bin/package only make ast-ksh-locale CC=${CC:-gcc}
	}
}

src_install() {
	# check where the build scripts put them
	local my_arch="${S}/arch/$(${S}/bin/package)"
	exeinto /bin
	doexe ${my_arch}/bin/ok/ksh
	# i doubt anyone is fanatical enough to use 
	# this as /bin/sh.
	mv ${my_arch}/man/man1/sh.1 ${my_arch}/man/man1/ksh.1
	doman ${my_arch}/man/man1/ksh.1
	dodoc ${S}/lib/package/LICENSES/ast
	dodoc ${S}/lib/package/gen/ast-ksh.txt
	use nls && {
		dodir /usr/share
		mv ${S}/share/lib/locale ${D}/usr/share
	}
}