blob: 2ea73d33ff8bd1d340bdacf47e0d9b26a528c9b8 (
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
40
41
42
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpd/libmpd-11.8.17.ebuild,v 1.6 2012/05/05 08:02:30 jdhore Exp $
EAPI=6
inherit autotools git-r3
DESCRIPTION="A library handling connections to a MPD server"
HOMEPAGE="http://gmpc.wikia.com/wiki/Libmpd"
EGIT_REPO_URI="git://repo.or.cz/libmpd.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="doc static-libs"
RDEPEND=">=dev-libs/glib-2.16:2"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
src_prepare() {
eautoreconf
}
src_configure() {
econf \
$(use_enable static-libs static) \
--docdir="${EPREFIX}"/usr/share/doc/${PF}
}
src_compile() {
emake
use doc && emake -C doc doc
}
src_install() {
default
use doc && dohtml -r doc/html/*
find "${ED}" -name "*.la" -exec rm -rf {} + || die
rm "${ED}"/usr/share/doc/${PF}/{README,ChangeLog} || die
}
|