diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-08-26 09:14:12 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-08-26 09:14:12 +0000 |
commit | 5b844efe49ef36357e9745a087045ef65ad60f0f (patch) | |
tree | d07591d2015f85a3d8f30753f14b6678a1da3092 /app-emulation | |
parent | Added ~mips to KEYWORDS (diff) | |
download | gentoo-2-5b844efe49ef36357e9745a087045ef65ad60f0f.tar.gz gentoo-2-5b844efe49ef36357e9745a087045ef65ad60f0f.tar.bz2 gentoo-2-5b844efe49ef36357e9745a087045ef65ad60f0f.zip |
tidy; add error messages
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/uae/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/uae/Manifest | 4 | ||||
-rw-r--r-- | app-emulation/uae/uae-0.8.22.ebuild | 24 |
3 files changed, 17 insertions, 16 deletions
diff --git a/app-emulation/uae/ChangeLog b/app-emulation/uae/ChangeLog index 2dc9bd52f48f..50babf370061 100644 --- a/app-emulation/uae/ChangeLog +++ b/app-emulation/uae/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/uae # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/ChangeLog,v 1.6 2003/02/12 04:03:30 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/ChangeLog,v 1.7 2003/08/26 09:14:08 msterret Exp $ + + 26 Aug 2003; Michael Sterrett <msterret@gentoo.org> uae-0.8.22.ebuild: + tidy; add error messages *uae-0.8.22 (9 Oct 2002) diff --git a/app-emulation/uae/Manifest b/app-emulation/uae/Manifest index 44c1b4cd7300..9fc66fadc898 100644 --- a/app-emulation/uae/Manifest +++ b/app-emulation/uae/Manifest @@ -1,4 +1,4 @@ -MD5 3cafa48266180c155cd14b654a08ed57 ChangeLog 1131 -MD5 522129cc077a5836f75c86d6895dd1a0 uae-0.8.22.ebuild 1255 +MD5 94cbac8b4aa8b1adb59a844d6bc06b54 ChangeLog 1234 +MD5 228089445d328b29d9755989a74f0188 uae-0.8.22.ebuild 1205 MD5 b2fac0f21ee34abaa6279cf7ad023119 files/digest-uae-0.8.22 62 MD5 4d3af2d2cc2945b006249066cb8c7adb files/uae-patch.diff 364 diff --git a/app-emulation/uae/uae-0.8.22.ebuild b/app-emulation/uae/uae-0.8.22.ebuild index 6a817dc951ee..972bfaee9d82 100644 --- a/app-emulation/uae/uae-0.8.22.ebuild +++ b/app-emulation/uae/uae-0.8.22.ebuild @@ -1,27 +1,25 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/uae-0.8.22.ebuild,v 1.8 2003/02/13 07:16:46 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/uae-0.8.22.ebuild,v 1.9 2003/08/26 09:14:08 msterret Exp $ -S=${WORKDIR}/${P} DESCRIPTION="An amiga emulator" HOMEPAGE="http://www.freiburg.linux.de/~uae/" -LICENSE="GPL-2" -DEPEND="X? ( virtual/x11 gtk? ( x11-libs/gtk+ ) ) : ( sys-libs/ncurses svga? ( media-libs/svgalib ) ) - sdl? media-libs/libsdl" SRC_URI="ftp://ftp.freiburg.linux.de/pub/uae/sources/develop/${P}.tar.gz" -SLOT="0" + KEYWORDS="x86 ~ppc" +LICENSE="GPL-2" +SLOT="0" IUSE="X gtk svga sdl" +DEPEND="X? ( virtual/x11 gtk? ( x11-libs/gtk+ ) ) : ( sys-libs/ncurses svga? ( media-libs/svgalib ) ) + sdl? ( media-libs/libsdl )" + src_compile() { - local myconf - myconf=""; + local myconf="" if [ `use X` ]; then myconf="--with-x --enable-dga --enable-vidmode --with-sdl --with-sdl-sound --with-sdl-gfx" - - use gtk && myconf="$myconf --enable-ui" - use gtk || myconf="$myconf --disable-ui" + myconf="$myconf `use_enable gtk ui`" else if [ `use svga` ]; then myconf="--with-svgalib"; @@ -36,12 +34,12 @@ src_compile() { --enable-scsi-device \ ${myconf} || die "./configure failed" - make || die + emake || die "emake failed" } src_install() { dobin uae readdisk - mv docs/unix/README docs/README.unix + cp docs/unix/README docs/README.unix dodoc docs/* insinto /usr/share/uae/amiga-tools |