blob: 6194082ff1fd11adce6a030c8b6a426219cc11da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2005 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.11.1.ebuild,v 1.2 2005/11/29 18:51:23 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://banshee-project.org/files/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
RDEPEND="dev-lang/mono
doc? ( dev-util/monodoc )
>=dev-dotnet/gtk-sharp-2.0"
DEPEND="${RDEPEND}
>=media-libs/libipoddevice-0.3.5"
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
}
|