# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils mono DESCRIPTION="Library for interfacing with Apple iPod devices" 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="doc" RDEPEND="dev-lang/mono >=media-libs/libipoddevice-0.3.5 >=dev-dotnet/gtk-sharp-2.0" DEPEND="${RDEPEND} doc? ( dev-util/monodoc )" src_compile() { econf $(use_enable doc docs) || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "install failed" dodoc AUTHORS ChangeLog NEWS README }