blob: 6aa839a9290a76ab51ee3866e714d9808f99548a (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild,v 1.7 2004/03/14 02:40:38 mr_bones_ Exp $
MY_PV=${PV//./}
S=${WORKDIR}/stx
DESCRIPTION="The non-commercial version of a complete implementation of the Smalltalk programming language and development environment"
HOMEPAGE="http://www.exept.de/exept_99/english/welcomeFrame_smalltalk.html"
SRC_URI="mirror://gentoo/${PN}-common-${MY_PV}.tar.gz
mirror://gentoo/${PN}-linux-${MY_PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/glibc
virtual/x11"
src_install() {
dodir /opt
./INSTALL.sh -q -top ${D}/opt
dosed /opt/smalltalk/${PV}/bin/smalltalk
cd ${D}/opt/smalltalk/${PV}/
for i in `find . -type l` ; do
foo=`ls -l ${i} | sed "s/.*-> //" | sed "s_${D}__"`
rm $i
ln -sf ${foo} $i
done
dodir /usr/bin
dosym /opt/smalltalk/${PV}/bin/smalltalk /usr/bin/smalltalk
# create a path entry in /etc/env.d
echo "PATH=/opt/smalltalk/${PV}/bin" >> ${WORKDIR}/50smalltalkx
insinto /etc/env.d
doins ${WORKDIR}/50smalltalkx
}
|