diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2007-09-18 15:46:19 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2007-09-18 15:46:19 +0000 |
commit | 571559edac22d1f57e5eb76ed26e2443dbb7be67 (patch) | |
tree | c4f0585f8960c4594eb1fc79c889716d40c88afd /media-sound | |
parent | Unmask dia; bug #191673 (diff) | |
download | gentoo-2-571559edac22d1f57e5eb76ed26e2443dbb7be67.tar.gz gentoo-2-571559edac22d1f57e5eb76ed26e2443dbb7be67.tar.bz2 gentoo-2-571559edac22d1f57e5eb76ed26e2443dbb7be67.zip |
Warn if ipod is given withou hal; bug #191700
(Portage version: 2.1.3.9)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/rhythmbox/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/rhythmbox/rhythmbox-0.10.1.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/media-sound/rhythmbox/ChangeLog b/media-sound/rhythmbox/ChangeLog index 418395232ce3..8d638c445f64 100644 --- a/media-sound/rhythmbox/ChangeLog +++ b/media-sound/rhythmbox/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/rhythmbox # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/rhythmbox/ChangeLog,v 1.104 2007/09/01 13:11:30 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/rhythmbox/ChangeLog,v 1.105 2007/09/18 15:46:19 dang Exp $ + + 18 Sep 2007; Daniel Gryniewicz <dang@gentoo.org> rhythmbox-0.10.1.ebuild: + Warn if ipod is given withou hal; bug #191700 01 Sep 2007; nixnut <nixnut@gentoo.org> rhythmbox-0.10.1.ebuild: Stable on ppc wrt bug 185186 diff --git a/media-sound/rhythmbox/rhythmbox-0.10.1.ebuild b/media-sound/rhythmbox/rhythmbox-0.10.1.ebuild index 9e7c8a114070..8823d58f9d9f 100644 --- a/media-sound/rhythmbox/rhythmbox-0.10.1.ebuild +++ b/media-sound/rhythmbox/rhythmbox-0.10.1.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/media-sound/rhythmbox/rhythmbox-0.10.1.ebuild,v 1.7 2007/09/01 13:11:30 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/rhythmbox/rhythmbox-0.10.1.ebuild,v 1.8 2007/09/18 15:46:19 dang Exp $ inherit gnome2 eutils @@ -60,6 +60,10 @@ pkg_setup() { ewarn "USE=avahi or USE=howl" fi fi + if ! use hal && use ipod; then + ewarn "ipod support requires hal support. Please" + ewarn "re-emerge with USE=hal to enable ipod support" + fi if use howl || use avahi ; then G2CONF="${G2CONF} $(use_enable daap)" fi |