blob: 6b8e7a19460be78f1e17a37c3be72752d3871064 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils subversion
DESCRIPTION="the fast media tag lib"
HOMEPAGE="http://mtag.berlios.de/"
SRC_URI=""
ESVN_REPO_URI="http://svn.berlios.de/svnroot/repos/mtag/trunk/mtag"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="media-libs/taglib
>=dev-db/sqlite-3.3.12"
DEPEND="dev-util/cmake
doc? ( app-doc/doxygen )
${RDEPEND}"
src_compile() {
cmake "${S}" || die "compile failed!"
emake || die "compile failed!"
if use doc; then
doxygen "${S}" || die "compile failed!"
fi
}
src_install() {
dobin mtag
dodoc README ChangeLog AUTHORS
if use doc; then
dohtml html/*
fi
}
|