diff options
Diffstat (limited to 'dev-dotnet/ipod-sharp/ipod-sharp-0.8.1.ebuild')
-rw-r--r-- | dev-dotnet/ipod-sharp/ipod-sharp-0.8.1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-dotnet/ipod-sharp/ipod-sharp-0.8.1.ebuild b/dev-dotnet/ipod-sharp/ipod-sharp-0.8.1.ebuild new file mode 100644 index 000000000000..35dd625a7196 --- /dev/null +++ b/dev-dotnet/ipod-sharp/ipod-sharp-0.8.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ipod-sharp/ipod-sharp-0.8.1.ebuild,v 1.1 2008/09/23 10:44:55 loki_val Exp $ + +inherit mono + +DESCRIPTION="ipod-sharp provides high-level feature support for Apple's iPod and binds libipoddevice." +HOMEPAGE="http://banshee-project.org/Ipod-sharp" +SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND=">=dev-lang/mono-1.1.10 + dev-dotnet/dbus-glib-sharp + >=dev-dotnet/podsleuth-0.6" +DEPEND="${RDEPEND} + doc? ( >=dev-util/monodoc-1.1.8 ) + dev-util/pkgconfig" + +src_compile() { + econf $(use_enable doc docs) + emake -j1 || die "emake failed." +} +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README +} |