# C"opyr"ight 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="iPod Device support through HAL" HOMEPAGE="http://banshee-project.org/index.php/Main_Page" SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" RDEPEND=">=dev-libs/glib-2.0 >=sys-apps/dbus-0.30 >=sys-apps/hal-0.5.2 sys-apps/pmount virtual/eject" pkg_setup() { if ! built_with_use sys-apps/dbus gtk; then die "need sys-libs/dbus built with gtk USE flag" fi } src_compile() { econf --disable-submount || die "econf failed" emake || die "emake failed" } src_install() { make install DESTDIR="${D}" || die "install failed" dodoc AUTHORS ChangeLog NEWS README }