diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-01 06:26:37 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-01 06:26:37 +0000 |
commit | a6b7d9462c7db274ef2144a08a5ee09744f9389b (patch) | |
tree | 43d39612a057019414458618b86c0b6307d50463 /app-emulation/uade | |
parent | clean the pre ebuild (Manifest recommit) (diff) | |
download | gentoo-2-a6b7d9462c7db274ef2144a08a5ee09744f9389b.tar.gz gentoo-2-a6b7d9462c7db274ef2144a08a5ee09744f9389b.tar.bz2 gentoo-2-a6b7d9462c7db274ef2144a08a5ee09744f9389b.zip |
tidy a bit
Diffstat (limited to 'app-emulation/uade')
-rw-r--r-- | app-emulation/uade/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/uade/uade-0.91.ebuild | 15 |
2 files changed, 11 insertions, 9 deletions
diff --git a/app-emulation/uade/ChangeLog b/app-emulation/uade/ChangeLog index ae4051993e7b..7a742a9cde0e 100644 --- a/app-emulation/uade/ChangeLog +++ b/app-emulation/uade/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/uade # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v 1.13 2004/09/01 06:07:22 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v 1.14 2004/09/01 06:26:37 mr_bones_ Exp $ + + 31 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> uade-0.91.ebuild: + tidy a bit 31 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> -uade-0.91_pre3.ebuild: clean the pre ebuild diff --git a/app-emulation/uade/uade-0.91.ebuild b/app-emulation/uade/uade-0.91.ebuild index e5b3d9625f66..1152e83d4c18 100644 --- a/app-emulation/uade/uade-0.91.ebuild +++ b/app-emulation/uade/uade-0.91.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-0.91.ebuild,v 1.3 2004/08/22 09:27:45 malc Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-0.91.ebuild,v 1.4 2004/09/01 06:26:37 mr_bones_ Exp $ DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API" HOMEPAGE="http://uade.ton.tut.fi/" @@ -11,7 +11,10 @@ SLOT="0" KEYWORDS="~x86 ~ppc ~amd64" IUSE="xmms sdl alsa oss perl" -RDEPEND="xmms? ( >=media-sound/xmms-1.2.2 x11-libs/gtk+ ) +RDEPEND="virtual/libc + xmms? ( + >=media-sound/xmms-1.2.2 + x11-libs/gtk+ ) sdl? ( media-libs/libsdl ) alsa? ( >=media-libs/alsa-lib-1.0.5 )" @@ -19,20 +22,16 @@ DEPEND="${RDEPEND} xmms? ( sys-devel/libtool )" src_compile() { - - cd ${S} - ./configure \ --prefix=/usr \ - --package-prefix=${D} \ - --docdir=/usr/share/doc/${PF} \ + --package-prefix="${D}" \ + --docdir="/usr/share/doc/${PF}" \ --without-bmp \ $(use_with oss) \ $(use_with sdl) \ $(use_with alsa) \ $(use_with xmms) \ || die "configure failed" - emake || die 'emake failed' } |