Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 9744 - squeak-3.2.5.ebuild (New Package)
Summary: squeak-3.2.5.ebuild (New Package)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High enhancement (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-10-27 05:34 UTC by MATSUU Takuto (RETIRED)
Modified: 2003-02-04 19:42 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
squeak-3.2.5.ebuild (squeak-3.2.5.ebuild,1.25 KB, text/plain)
2002-10-27 05:35 UTC, MATSUU Takuto (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
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
 }