diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2008-04-15 02:47:41 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2008-04-15 02:47:41 +0000 |
commit | 699acb1a8a1a12a5db92c9033d2aa5923f2c25a2 (patch) | |
tree | 2f24587cad29a91cfbb600ce943636a5649584d9 /gnome-base | |
parent | Restore an old snapshot to provide some now lost functionality (diff) | |
download | gentoo-2-699acb1a8a1a12a5db92c9033d2aa5923f2c25a2.tar.gz gentoo-2-699acb1a8a1a12a5db92c9033d2aa5923f2c25a2.tar.bz2 gentoo-2-699acb1a8a1a12a5db92c9033d2aa5923f2c25a2.zip |
Check for minimal use flag in libcdio; bug #217385
(Portage version: 2.1.5_rc3)
Diffstat (limited to 'gnome-base')
-rw-r--r-- | gnome-base/gvfs/ChangeLog | 5 | ||||
-rw-r--r-- | gnome-base/gvfs/gvfs-0.2.3.ebuild | 11 |
2 files changed, 13 insertions, 3 deletions
diff --git a/gnome-base/gvfs/ChangeLog b/gnome-base/gvfs/ChangeLog index ad0f3839409f..042193d5a41c 100644 --- a/gnome-base/gvfs/ChangeLog +++ b/gnome-base/gvfs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for gnome-base/gvfs # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v 1.6 2008/04/09 22:39:04 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v 1.7 2008/04/15 02:47:41 dang Exp $ + + 15 Apr 2008; Daniel Gryniewicz <dang@gentoo.org> gvfs-0.2.3.ebuild: + Check for minimal use flag in libcdio; bug #217385 *gvfs-0.2.3 (09 Apr 2008) diff --git a/gnome-base/gvfs/gvfs-0.2.3.ebuild b/gnome-base/gvfs/gvfs-0.2.3.ebuild index 1419b831f663..ab280c574dfb 100644 --- a/gnome-base/gvfs/gvfs-0.2.3.ebuild +++ b/gnome-base/gvfs/gvfs-0.2.3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-0.2.3.ebuild,v 1.2 2008/04/12 13:44:26 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-0.2.3.ebuild,v 1.3 2008/04/15 02:47:41 dang Exp $ -inherit autotools gnome2 +inherit autotools gnome2 eutils DESCRIPTION="GNOME Virtual Filesystem Layer" HOMEPAGE="http://www.gnome.org" @@ -52,4 +52,11 @@ pkg_setup() { $(use_enable hal) $(use_enable keyring) $(use_enable samba)" + + if use cdda && built_with_use dev-libs/libcdio minimal; then + ewarn + ewarn "CDDA support in gvfs requires dev-libs/libcdio to be built" + ewarn "without the minimal USE flag." + die "Please re-emerge dev-libs/libcdio without the minimal USE flag" + fi } |