diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-07-09 02:46:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-07-09 02:46:42 +0000 |
commit | 3c58ffc2b5467bddad3a316894fa9b0323bef9fe (patch) | |
tree | ee8b4e8ce76155dff79db9e9c9989cd803dc4168 /app-emulation | |
parent | alpha/arm/hppa/ia64/ppc64/s390/sh love (diff) | |
download | gentoo-2-3c58ffc2b5467bddad3a316894fa9b0323bef9fe.tar.gz gentoo-2-3c58ffc2b5467bddad3a316894fa9b0323bef9fe.tar.bz2 gentoo-2-3c58ffc2b5467bddad3a316894fa9b0323bef9fe.zip |
Make sure alsa-lib is built with USE=midi #183739.
(Portage version: 2.1.3_rc6)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/wine/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/wine/files/digest-wine-0.9.29 | 1 | ||||
-rw-r--r-- | app-emulation/wine/wine-0.9.40.ebuild | 9 |
3 files changed, 13 insertions, 2 deletions
diff --git a/app-emulation/wine/ChangeLog b/app-emulation/wine/ChangeLog index e773a8f64fc8..eb46b2a7be3c 100644 --- a/app-emulation/wine/ChangeLog +++ b/app-emulation/wine/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/wine # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v 1.184 2007/06/29 23:11:55 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v 1.185 2007/07/09 02:46:42 vapier Exp $ + + 09 Jul 2007; Mike Frysinger <vapier@gentoo.org> wine-0.9.40.ebuild: + Make sure alsa-lib is built with USE=midi #183739. *wine-0.9.40 (29 Jun 2007) diff --git a/app-emulation/wine/files/digest-wine-0.9.29 b/app-emulation/wine/files/digest-wine-0.9.29 index 04706449fb3f..0cfd32aa96f5 100644 --- a/app-emulation/wine/files/digest-wine-0.9.29 +++ b/app-emulation/wine/files/digest-wine-0.9.29 @@ -1,2 +1,3 @@ +MD5 4f6270a0828e0f8e524cf360b7fd58ee wine-0.9.29.tar.bz2 11447017 RMD160 f97c417c92e2548574e558eaa966dce8df836648 wine-0.9.29.tar.bz2 11447017 SHA256 30078ff0f8d2ed699d2fe72f3a756d005b8a85a4a9e66ba88322fc0897e8b52c wine-0.9.29.tar.bz2 11447017 diff --git a/app-emulation/wine/wine-0.9.40.ebuild b/app-emulation/wine/wine-0.9.40.ebuild index 09e22e8287eb..2f4bac0cfcf3 100644 --- a/app-emulation/wine/wine-0.9.40.ebuild +++ b/app-emulation/wine/wine-0.9.40.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-0.9.40.ebuild,v 1.1 2007/06/29 23:11:55 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-0.9.40.ebuild,v 1.2 2007/07/09 02:46:42 vapier Exp $ inherit eutils flag-o-matic multilib @@ -53,6 +53,13 @@ DEPEND="${RDEPEND} sys-devel/bison sys-devel/flex" +pkg_setup() { + if ! built_with_use media-libs/alsa-lib midi ; then + eerror "You must build media-libs/alsa-lib with USE=midi" + die "please re-emerge media-libs/alsa-lib with USE=midi" + fi +} + src_unpack() { unpack wine-${PV}.tar.bz2 cd "${S}" |