blob: aa5d30bbef37f46acc52cc81492245e04c4b55e0 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit mono
DESCRIPTION="Taglib# 2.0 - Managed tag reader/writer"
HOMEPAGE="http://download.banshee.fm/taglib-sharp/"
SRC_URI="http://download.banshee-project.org/${PN}/${PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="dev-lang/mono"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS="AUTHORS ChangeLog NEWS README"
src_prepare() {
sed -i -e "s:docs::" \
-e "s:examples::" \
Makefile.in || die "sedding sense into makefiles failed"
}
src_configure() {
econf --disable-docs
}
|