diff options
Diffstat (limited to 'dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild')
-rw-r--r-- | dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild b/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild deleted file mode 100644 index 7ef2462617db..000000000000 --- a/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# 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-4.1.4.ebuild,v 1.11 2005/06/02 18:32:25 wormo 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 -ppc" -IUSE="" - -DEPEND="virtual/libc - 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 -} |