blob: 807aab32e4bf1d448b3e851f8bb5a8e4e4f213fe (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit subversion cmake-utils
DESCRIPTION="A converter between many dictionary formats (dictd, dsl, sdict, stardict, xdxf)"
HOMEPAGE="http://xdxf.sf.net"
ESVN_REPO_URI="https://xdxf.svn.sourceforge.net/svnroot/xdxf/trunk"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE="doc"
DEPEND="
sys-libs/zlib
>=dev-libs/glib-2.6.0
dev-libs/expat
"
RDEPEND="
${DEPEND}
virtual/python
"
src_install() {
cmake-utils_src_install
dodoc AUTHORS ChangeLog README TODO
}
|