blob: 968588b2f9a5d590eb38f308efa274ebd5258b9f (
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
30
31
32
33
34
35
36
37
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/podsleuth/podsleuth-0.6.7.ebuild,v 1.3 2010/09/12 12:57:50 josejx Exp $
EAPI=2
inherit mono
DESCRIPTION="A tool to discover detailed model information about an Apple (TM) iPod (TM)."
HOMEPAGE="http://download.banshee.fm/podsleuth/"
SRC_URI="http://download.banshee.fm/${PN}/${PV}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
RDEPEND="dev-dotnet/dbus-glib-sharp
>=dev-lang/mono-2
sys-apps/hal
>=sys-apps/sg3_utils-1.27"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf \
--with-hal-callouts-dir=/usr/libexec
}
src_compile() {
emake -j1 || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README
mono_multilib_comply
}
|