summaryrefslogtreecommitdiff
blob: 48c6667c41d698175c063094dc3c3f47fecbc893 (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
38
39
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="4"
inherit eutils mono toolchain-funcs

DESCRIPTION="Support library for using Rio devices with mtp"
HOMEPAGE="http://www.freakysoft.de/libkarma/"
SRC_URI="http://www.freakysoft.de/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""

RDEPEND="virtual/libiconv
	media-libs/taglib
	dev-lang/mono
	virtual/libusb:0"
DEPEND="${RDEPEND}"

MAKEOPTS="${MAKEOPTS} -j1"

src_prepare() {
	# Make this respect LDFLAGS, bug #336151
	epatch "${FILESDIR}"/${PN}-0.1.0-ldflags.patch
}

src_compile() {
	tc-export AR CC RANLIB
	emake all
}

src_install() {
	emake DESTDIR="${D}" install
	dodoc THANKS TODO
	mono_multilib_comply
}