summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Trygve Kalleberg <karltk@gentoo.org>2002-11-02 23:49:49 +0000
committerKarl Trygve Kalleberg <karltk@gentoo.org>2002-11-02 23:49:49 +0000
commit2cc37256da3edf9592009201e9ccf843e6b185bc (patch)
treece87ec9150d38aadc58b48be6eeb62b59176c069 /dev-lang/smalltalkx
parentadded -ppc to keywords (diff)
downloadgentoo-2-2cc37256da3edf9592009201e9ccf843e6b185bc.tar.gz
gentoo-2-2cc37256da3edf9592009201e9ccf843e6b185bc.tar.bz2
gentoo-2-2cc37256da3edf9592009201e9ccf843e6b185bc.zip
Fixes #3541 (at long last).
Diffstat (limited to 'dev-lang/smalltalkx')
-rw-r--r--dev-lang/smalltalkx/ChangeLog8
-rw-r--r--dev-lang/smalltalkx/files/digest-smalltalkx-4.1.42
-rw-r--r--dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild31
3 files changed, 41 insertions, 0 deletions
diff --git a/dev-lang/smalltalkx/ChangeLog b/dev-lang/smalltalkx/ChangeLog
new file mode 100644
index 000000000000..27dc34879ef5
--- /dev/null
+++ b/dev-lang/smalltalkx/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for dev-lang/smalltalkx
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/smalltalkx/ChangeLog,v 1.1 2002/11/02 23:49:49 karltk Exp $
+
+*smalltalkx-4.1.4 (03 Nov 2002)
+
+ 03 Nov 2002; Karl Trygve Kalleberg <karltk@gentoo.org> smalltalkx-4.1.4.ebuild files/digest-smalltalkx-4.1.4 :
+ Initial import. Ebuild submitted by Marko Mikulicic <marko@seul.org>.
diff --git a/dev-lang/smalltalkx/files/digest-smalltalkx-4.1.4 b/dev-lang/smalltalkx/files/digest-smalltalkx-4.1.4
new file mode 100644
index 000000000000..03b78943fa78
--- /dev/null
+++ b/dev-lang/smalltalkx/files/digest-smalltalkx-4.1.4
@@ -0,0 +1,2 @@
+MD5 ffe0698f5371e2a88c318bc10e377112 smalltalkx-common-414.tar.gz 13931943
+MD5 765df6729217f934e1e1a36bb60501d4 smalltalkx-linux-414.tar.gz 9718846
diff --git a/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild b/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild
new file mode 100644
index 000000000000..90f58603837f
--- /dev/null
+++ b/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/smalltalkx/smalltalkx-4.1.4.ebuild,v 1.1 2002/11/02 23:49:49 karltk Exp $
+
+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/smalltalkx-common-414.tar.gz
+ mirror://gentoo/smalltalkx-linux-414.tar.gz"
+DEPEND="virtual/glibc virtual/x11"
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS="~x86"
+S=${WORKDIR}/stx
+IUSE=""
+
+src_install () {
+ dodir /opt
+ ./INSTALL.sh -q -top ${D}/opt
+
+ dosed ${D}/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
+}