diff options
author | 2004-11-05 13:31:14 +0000 | |
---|---|---|
committer | 2004-11-05 13:31:14 +0000 | |
commit | 4ccbb8577d4398c5d1458ecf88a2ebc5657dabbb (patch) | |
tree | a6d629cfbc0cc4cf343b997f8ab32545b2fb332a /app-emulation/uade | |
parent | Stable on mips, bugs #68571 and #69662 (Manifest recommit) (diff) | |
download | gentoo-2-4ccbb8577d4398c5d1458ecf88a2ebc5657dabbb.tar.gz gentoo-2-4ccbb8577d4398c5d1458ecf88a2ebc5657dabbb.tar.bz2 gentoo-2-4ccbb8577d4398c5d1458ecf88a2ebc5657dabbb.zip |
Removed beepmp support from the 0.91-rc1 ebuild.
Diffstat (limited to 'app-emulation/uade')
-rw-r--r-- | app-emulation/uade/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/uade/uade-0.91-r1.ebuild | 13 |
2 files changed, 9 insertions, 11 deletions
diff --git a/app-emulation/uade/ChangeLog b/app-emulation/uade/ChangeLog index 2761a4be79b3..794f339070cc 100644 --- a/app-emulation/uade/ChangeLog +++ b/app-emulation/uade/ChangeLog @@ -1,6 +1,11 @@ # 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.17 2004/10/30 22:22:32 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v 1.18 2004/11/05 13:31:14 spock Exp $ + + 05 Nov 2004; Michal Januszewski <spock@gentoo.org> uade-0.91-r1.ebuild: + Removed beepmp support from the 0.91-rc1 ebuild, as this breaks on the + dependency on beep-media-player-0.7_rc1 and I don't want to force anyone to + downgrade to 0.81. *uade-1.00 (31 Oct 2004) diff --git a/app-emulation/uade/uade-0.91-r1.ebuild b/app-emulation/uade/uade-0.91-r1.ebuild index 202273fab8d8..97ca24be1e63 100644 --- a/app-emulation/uade/uade-0.91-r1.ebuild +++ b/app-emulation/uade/uade-0.91-r1.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-r1.ebuild,v 1.2 2004/10/30 22:22:32 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-0.91-r1.ebuild,v 1.3 2004/11/05 13:31:14 spock Exp $ inherit eutils @@ -11,23 +11,17 @@ SRC_URI="http://uade.ton.tut.fi/uade/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~ppc ~amd64" -IUSE="xmms sdl alsa oss perl beepmp" +IUSE="xmms sdl alsa oss perl" 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 ) - beepmp? ( >=media-sound/beep-media-player-0.7_rc1 )" + alsa? ( >=media-libs/alsa-lib-1.0.5 )" DEPEND="${RDEPEND} xmms? ( sys-devel/libtool )" -src_unpack () { - unpack ${A} - epatch ${FILESDIR}/${P}-bmp-fix.patch -} - src_compile() { ./configure \ --prefix=/usr \ @@ -37,7 +31,6 @@ src_compile() { $(use_with sdl) \ $(use_with alsa) \ $(use_with xmms) \ - $(use_with beepmp bmp) \ || die "configure failed" emake || die 'emake failed' } |