diff options
author | David Holm <dholm@gentoo.org> | 2004-06-02 11:53:42 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-06-02 11:53:42 +0000 |
commit | d8fa3ad2db5391ad3c3d55e87b17ec980620de66 (patch) | |
tree | 45b2adbbc4d990c316b24fa1cb8a7cd91c7db71b /app-emulation | |
parent | Fixing broken uncompress/S location and closing bug #52731. (diff) | |
download | historical-d8fa3ad2db5391ad3c3d55e87b17ec980620de66.tar.gz historical-d8fa3ad2db5391ad3c3d55e87b17ec980620de66.tar.bz2 historical-d8fa3ad2db5391ad3c3d55e87b17ec980620de66.zip |
Closed bug #46109
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/sheepshaver/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/sheepshaver/Manifest | 5 | ||||
-rw-r--r-- | app-emulation/sheepshaver/files/20040319_x86_fpu_opts.patch | 0 | ||||
-rw-r--r-- | app-emulation/sheepshaver/sheepshaver-20040319.ebuild | 16 |
4 files changed, 22 insertions, 5 deletions
diff --git a/app-emulation/sheepshaver/ChangeLog b/app-emulation/sheepshaver/ChangeLog index 2c4d5b990931..15639e6060c1 100644 --- a/app-emulation/sheepshaver/ChangeLog +++ b/app-emulation/sheepshaver/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/sheepshaver # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/sheepshaver/ChangeLog,v 1.1 2004/03/19 15:23:43 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/sheepshaver/ChangeLog,v 1.2 2004/06/02 11:53:42 dholm Exp $ + + 02 Jun 2004; David Holm <dholm@gentoo.org> + +files/20040319_x86_fpu_opts.patch, sheepshaver-20040319.ebuild: + Closed bug #46109. *sheepshaver-20040319 (19 Mar 2004) diff --git a/app-emulation/sheepshaver/Manifest b/app-emulation/sheepshaver/Manifest index 864540fd8b8f..9c2d37311ab3 100644 --- a/app-emulation/sheepshaver/Manifest +++ b/app-emulation/sheepshaver/Manifest @@ -1,4 +1,5 @@ -MD5 f1b8b9d87f74a53d303cbaa8880cb993 sheepshaver-20040319.ebuild 855 +MD5 cd3178cbd6eb696c6fe8f9507cd72c1a ChangeLog 511 MD5 d6c67932b1690484ae0b153f549ba7d0 metadata.xml 792 -MD5 b228df3aac646d21cf67bd58caef4607 ChangeLog 377 +MD5 042d1f908d4b83f57c79f4f59b4d6387 sheepshaver-20040319.ebuild 1058 MD5 84f85472d4df884151c8b8ddbb4d6337 files/digest-sheepshaver-20040319 73 +MD5 d41d8cd98f00b204e9800998ecf8427e files/20040319_x86_fpu_opts.patch 0 diff --git a/app-emulation/sheepshaver/files/20040319_x86_fpu_opts.patch b/app-emulation/sheepshaver/files/20040319_x86_fpu_opts.patch new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/app-emulation/sheepshaver/files/20040319_x86_fpu_opts.patch diff --git a/app-emulation/sheepshaver/sheepshaver-20040319.ebuild b/app-emulation/sheepshaver/sheepshaver-20040319.ebuild index c3832d4f4c37..a2e6613b3334 100644 --- a/app-emulation/sheepshaver/sheepshaver-20040319.ebuild +++ b/app-emulation/sheepshaver/sheepshaver-20040319.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/sheepshaver/sheepshaver-20040319.ebuild,v 1.1 2004/03/19 15:23:43 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/sheepshaver/sheepshaver-20040319.ebuild,v 1.2 2004/06/02 11:53:42 dholm Exp $ + +inherit eutils S="${WORKDIR}/${P}/SheepShaver" DESCRIPTION="A MacOS run-time environment that allows you to run classic MacOS applications" @@ -13,9 +15,19 @@ KEYWORDS="~ppc" IUSE="gtk esd" DEPEND="gtk? ( x11-libs/gtk+ ) - esd? ( media-sound/esound )" + 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 |