blob: e1c32881692b32a14e36b4cba8b001b8463d5d9b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/smalltalkx/smalltalkx-5.2.6.ebuild,v 1.1 2005/08/24 11:44:14 araujo Exp $
DESCRIPTION="The non-commercial version of a complete implementation of the Smalltalk programming language and development environment"
HOMEPAGE="http://www.exept.de/exept/english/Smalltalk/frame_uebersicht.html"
SRC_URI="mirror://gentoo/${PN}-common-${PV}.tgz
mirror://gentoo/${PN}-linux-${PV}.tgz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND=""
RDEPEND="virtual/libc
virtual/x11"
S=${WORKDIR}/stx
src_compile() {
einfo "This is a binary package."
einfo "We don't need to compile anything."
}
src_install() {
cp obsolete/INSTALL.sh obsolete/INSTALL.files .
einfo "Running the smalltalkx installer script"
./support/install-sh --prefix=${D}/opt/stx/${PV} \
--verbose -app-release=5.2.6 -quiet=yes \
`use_with doc` \
|| die "failed installation"
cd ${D}/opt/stx/${PV}/
for i in `find . -type l` ; do
foo=`ls -l ${i} | sed "s/.*-> //" | sed "s_${D}__"`
rm $i
ln -sf ${foo} $i
done
# do symbolic links
dodir /usr/bin
dosym /opt/stx/${PV}/bin/smalltalk /usr/bin/smalltalk
dosym /opt/stx/${PV}/bin/stx /usr/bin/stx
dosym /opt/stx/${PV}/bin/stc /usr/bin/stc
# setup the library path
echo "STX_LIBDIR=/opt/stx/${PV}/lib/" > ${WORKDIR}/50smalltalkx
doenvd ${WORKDIR}/50smalltalkx
}
|