blob: 637d10d99ff5adc20d4e37732cb435f3ef2113af (
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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
KDE_LINGUAS="cs da de es fr hr hu it ja nb nn pl pt ro ru sk sr sv tr zh_CN"
KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="A graphical debugger interface"
HOMEPAGE="http://www.kdbg.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="sys-devel/gdb"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/${P}-cmake34.patch" )
DOCS=( BUGS README ReleaseNotes-${PV} TODO )
src_prepare() {
# allow documentation to be handled by eclass
mv kdbg/doc . || die
sed -i -e '/add_subdirectory(doc)/d' kdbg/CMakeLists.txt || die
echo "add_subdirectory ( doc ) " >> CMakeLists.txt || die
kde4-base_src_prepare
}
src_install() {
kde4-base_src_install
# hack since ChangeLog-* is automagically installed by eclass
rm -f "${ED}"usr/share/doc/${PF}/ChangeLog-pre*
}
|