blob: 1429cd229a50517a05a4018c7d3a7019347bda21 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/sheepshaver/sheepshaver-20040319.ebuild,v 1.5 2005/01/01 14:16:28 eradicator Exp $
inherit eutils
S="${WORKDIR}/${P}/SheepShaver"
DESCRIPTION="A MacOS run-time environment that allows you to run classic MacOS applications"
HOMEPAGE="http://www.uni-mainz.de/~bauec002/SheepShaver.html"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="gtk esd"
DEPEND="gtk? ( x11-libs/gtk+ )
esd? ( media-sound/esound )
>=sys-devel/autoconf-2.54
>=sys-devel/automake-1.7"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}_x86_fpu_opts.patch
}
src_compile() {
export WANT_AUTOCONF=2.5
export WANT_AUTOMAKE=1.7
make links || die "Failed making links"
cd src/Unix
aclocal; autoheader; autoconf
econf || die "configure failed"
emake || die "compilation failed"
}
src_install() {
dohtml doc/Linux/*
cd src/Unix
einstall || die "Installation failed"
}
|