blob: c2b852d5c88f4a629e65d97e7314dc490aa68439 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KMNAME="extragear/utils"
inherit kde4-base
DESCRIPTION="KDE-based frontend to diff3"
HOMEPAGE="http://kdiff3.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="1"
IUSE="debug konqueror"
DEPEND="
konqueror? ( >=kde-base/libkonq-${KDE_MINIMAL} )
"
RDEPEND="${DEPEND}
sys-apps/diffutils
konqueror? ( >=kde-base/konqueror-${KDE_MINIMAL} )
"
PATCHES=( "${FILESDIR}/${PN}-desktop-menu-fix.patch" )
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with konqueror LibKonq)"
kde4-base_src_configure
}
|