Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 9744

Summary: squeak-3.2.5.ebuild (New Package)
Product: Gentoo Linux Reporter: MATSUU Takuto (RETIRED) <matsuu>
Component: New packagesAssignee: Gentoo Linux bug wranglers <bug-wranglers>
Status: RESOLVED FIXED    
Severity: enhancement CC: marko, matsuu
Priority: High    
Version: unspecified   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: squeak-3.2.5.ebuild

Description MATSUU Takuto (RETIRED) gentoo-dev 2002-10-27 05:34:05 UTC
This is stable version of squeak(bugs#3540).

Squeak is a multiplatform free smalltalk language environment.
Although is not as performant as commercial implementations
is definitely a good start for beginners.
Comment 1 MATSUU Takuto (RETIRED) gentoo-dev 2002-10-27 05:35:46 UTC
Created attachment 5055 [details]
squeak-3.2.5.ebuild
Comment 2 Karl Trygve Kalleberg (RETIRED) gentoo-dev 2002-11-02 16:33:59 UTC
*** Bug 3540 has been marked as a duplicate of this bug. ***
Comment 3 Karl Trygve Kalleberg (RETIRED) gentoo-dev 2002-11-02 16:42:43 UTC
When doing ebuild squeak-3.2.5 install, I get:

/bin/sh
/var/tmp/portage/squeak-3.2.5/work/Squeak-3.2-5/platforms/unix/config/mkinstalldirs
/var/tmp/portage/squeak-3.2.5/image//usr/bin
(
path=`/var/tmp/portage/squeak-3.2.5/work/Squeak-3.2-5/platforms/unix/config/relpath
/var/tmp/portage/squeak-3.2.5/image//usr/bin
/var/tmp/portage/squeak-3.2.5/image//usr/lib/squeak`; \
  cd /var/tmp/portage/squeak-3.2.5/image//usr/bin; \
  rm -f inisqueak; \
  ln -s $path/inisqueak .; )
/bin/sh
/var/tmp/portage/squeak-3.2.5/work/Squeak-3.2-5/platforms/unix/config/mkinstalldirs
/var/tmp/portage/squeak-3.2.5/image//usr/lib/squeak
/bin/install -c -m 644
/var/tmp/portage/squeak-3.2.5/work/Squeak-3.2-5/SqueakV3.sources
/var/tmp/portage/squeak-3.2.5/image//usr/lib/squeak
/bin/install: cannot stat
`/var/tmp/portage/squeak-3.2.5/work/Squeak-3.2-5/SqueakV3.sources': No such file
or directory
make: *** [install-sources] Error 1

Is this fixable ?
Comment 4 MATSUU Takuto (RETIRED) gentoo-dev 2002-11-02 20:56:32 UTC
--- squeak-3.2.5.ebuild.orig    2002-11-03 11:55:32.000000000 +0900
+++ squeak-3.2.5.ebuild 2002-11-03 11:53:53.000000000 +0900
@@ -25,8 +25,8 @@
 src_unpack() {
        unpack ${A}
        cd ${S}
-       mv usr/local/lib/squeak/*.gz .
-       mv ../Squeak-3.2-2/usr/local/lib/squeak/SqueakV3.sources .
+       mv usr/local/lib/squeak/*.gz . || die
+       mv ../Squeak-3/usr/local/lib/squeak/SqueakV3.sources . || die
        mkdir bld
 }