diff options
author | Luis Medinas <metalgod@gentoo.org> | 2006-06-03 02:05:55 +0000 |
---|---|---|
committer | Luis Medinas <metalgod@gentoo.org> | 2006-06-03 02:05:55 +0000 |
commit | 86bc53c94877146ade4c15a607c17d826acc8e26 (patch) | |
tree | cd12c1a77872dee821876088e9478a76a75d2064 /dev-dotnet/ipod-sharp/ipod-sharp-0.5.16.ebuild | |
parent | Stable on x86; bug #134951 (diff) | |
download | historical-86bc53c94877146ade4c15a607c17d826acc8e26.tar.gz historical-86bc53c94877146ade4c15a607c17d826acc8e26.tar.bz2 historical-86bc53c94877146ade4c15a607c17d826acc8e26.zip |
Version Bump from upstream that contains a fix for bug #134707.
Package-Manager: portage-2.1_rc3-r4
Diffstat (limited to 'dev-dotnet/ipod-sharp/ipod-sharp-0.5.16.ebuild')
-rw-r--r-- | dev-dotnet/ipod-sharp/ipod-sharp-0.5.16.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-dotnet/ipod-sharp/ipod-sharp-0.5.16.ebuild b/dev-dotnet/ipod-sharp/ipod-sharp-0.5.16.ebuild new file mode 100644 index 000000000000..9dbf3fc7817a --- /dev/null +++ b/dev-dotnet/ipod-sharp/ipod-sharp-0.5.16.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 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.5.16.ebuild,v 1.1 2006/06/03 02:05:55 metalgod 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://www.snorp.net/files/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc" + +RDEPEND=">=dev-lang/mono-1.1.10 + doc? ( >=dev-util/monodoc-1.1.8 ) + >=dev-dotnet/gtk-sharp-2.0" +DEPEND="${RDEPEND} + >=media-libs/libipoddevice-0.4.1" + +src_compile() { + econf $(use_enable doc docs) || die "configure failed" + emake || die "make failed" +} +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README +} |