blob: 216d2446cdb467bcbb1a8b3b1a39626399d3bc45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/squeak/squeak-3.7.7.ebuild,v 1.1 2006/03/07 11:21:17 araujo Exp $
inherit base versionator fixheadtails eutils
MY_PV=$(replace_version_separator 2 '-')
DESCRIPTION="Highly-portable Smalltalk-80 implementation"
HOMEPAGE="http://www.squeak.org/"
SRC_URI="http://squeakvm.org/unix/release/Squeak-${MY_PV}.src.tar.gz"
LICENSE="Apple"
SLOT="0"
KEYWORDS="~x86"
IUSE="X mmx threads iconv"
DEPEND="dev-libs/libffi
X? ( || ( ( x11-libs/libX11
x11-libs/libXext )
virtual/x11 ) )"
RDEPEND="${DEPEND}
virtual/squeak-image"
S="${WORKDIR}/Squeak-${MY_PV}"
src_unpack() {
base_src_unpack
cd ${S}
ht_fix_all
einfo 'Fix executable stack/text relocation.'
sed -i -e 's@abi=sysv\;\;@abi=libffi\;\ lib=\"-lffi\"\;\;@g' \
${S}/platforms/unix/plugins/SqueakFFIPrims/ffi-config
}
src_compile() {
local myconf=""
use X || myconf="--without-x"
use mmx && myconf="${myconf} --enable-mpg-mmx"
use threads && myconf="${myconf} --enable-mpg-pthreads"
use iconv || myconf="${myconf} --disable-iconv"
cd ${S}
mkdir build
cd build
../platforms/unix/config/configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
${myconf} || die "configure failed"
emake || die
}
src_install() {
cd ${S}/build
make ROOT=${D} docdir=/usr/share/doc/${PF} install || die
exeinto /usr/lib/squeak
doexe inisqueak
dosym /usr/lib/squeak/inisqueak /usr/bin/inisqueak
}
pkg_postinst() {
einfo "Run 'inisqueak' to get a private copy of the squeak image."
}
|