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 | d46ed08d265fb289752e869438da78dbef5f0729 (patch) | |
tree | 07b3446ffb68c669ccf8042d08e8977d43adfe38 /app-emulation/uade | |
parent | clean the pre ebuild (diff) | |
download | historical-d46ed08d265fb289752e869438da78dbef5f0729.tar.gz historical-d46ed08d265fb289752e869438da78dbef5f0729.tar.bz2 historical-d46ed08d265fb289752e869438da78dbef5f0729.zip |
tidy a bit
Diffstat (limited to 'app-emulation/uade')
-rw-r--r-- | app-emulation/uade/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/uade/Manifest | 4 | ||||
-rw-r--r-- | app-emulation/uade/uade-0.91.ebuild | 15 |
3 files changed, 13 insertions, 11 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/Manifest b/app-emulation/uade/Manifest index 15a0aea47043..f8795e5569fc 100644 --- a/app-emulation/uade/Manifest +++ b/app-emulation/uade/Manifest @@ -1,6 +1,6 @@ -MD5 3c77e1a45266050b71b389aee779cd5c ChangeLog 1777 +MD5 62ba3d04ae1794c48a73c13bba1cb43b ChangeLog 1864 MD5 5e0e693bfb3862a705778fa4518184c1 uade-0.81.ebuild 1594 MD5 a715d9de7a6423e88a804a562c2220a9 metadata.xml 219 -MD5 6e17105372393f6e1d9e611cce677ce6 uade-0.91.ebuild 1525 +MD5 2290dc4035301212d0df7b5b348b7a50 uade-0.91.ebuild 1540 MD5 4df754504fa84b727b0d21eccfcbf1c5 files/digest-uade-0.81 63 MD5 1f90b1c9ed54563fc4371e3976a2b4bb files/digest-uade-0.91 63 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' } |