diff options
author | Holger Hans Peter Freyther <zecke@openmoko.org> | 2008-10-02 14:05:18 +0200 |
---|---|---|
committer | Holger Freyther <ich@tamarin.(none)> | 2008-10-15 18:53:36 +0200 |
commit | 2303a5b6c84b13429c06a8e7593a6ecf8afaadaf (patch) | |
tree | 2eb9c874fa0166fc761f41ae9224f7193aa704a7 /packages/squeak | |
parent | b6c5a08721fab3e095377fa30e4eefceb078618c (diff) |
[squeak] Attempt to add squeak 3.10-1
- This does configure
- But it fails to link, there is something wrong with the
autoreconf...
Diffstat (limited to 'packages/squeak')
-rw-r--r-- | packages/squeak/squeakvm_3.10.1.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/squeak/squeakvm_3.10.1.bb b/packages/squeak/squeakvm_3.10.1.bb new file mode 100644 index 0000000000..cb4db9970a --- /dev/null +++ b/packages/squeak/squeakvm_3.10.1.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Squeak VM" +LICENSE = "Squeak License" +HOMEPAGE = "http://www.squeakvm.org" +DEPENDS = "virtual/libx11" + +EXTRA_OECONF += " --with-x --without-npsqueak" + + +SRC_URI = "http://www.squeakvm.org/unix/release/Squeak-3.10-1.src.tar.gz \ + file://configure-fixes.patch;patch=1" +S = "${WORKDIR}/Squeak-3.10-1/platforms/unix/config" + +inherit autotools + +do_configure_prepend() { + mkdir ${WORKDIR}/Squeak-3.10-1/platforms/unix/bld + cd ${WORKDIR}/Squeak-3.10-1/platforms/unix/bld +} + +do_compile_append() { + cd ${WORKDIR}/Squeak-3.10-1/platforms/unix/bld + find . -name 'Makefile' -exec sed -i s/@X_INCLUDES@//g {} \; + find . -name 'Makefile' -exec sed -i s/@X_LIBS@//g {} \; +} + +do_install_prepend() { + cd ${WORKDIR}/Squeak-3.10-1/platforms/unix/bld +} |