blob: f2c9a813d2ae77e92ddfbb4170cfa1ffa62f851d (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/krecipes/krecipes-2.0_alpha4.ebuild,v 1.1 2009/10/28 00:39:39 ssuominen Exp $
EAPI=2
KDE_MINIMAL=4.2
KDE_LINGUAS="cs da de el en_GB es et fr ga gl hi hne is it ja lt nb nds nl nn
pl pt pt_BR ro sk sv tr uk zh_TW"
KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}"
inherit kde4-base
DESCRIPTION="A KDE4 recipe application"
HOMEPAGE="http://krecipes.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P/_/-}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="4"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug +handbook"
DEPEND=">=kde-base/kdelibs-${KDE_MINIMAL}[semantic-desktop]
!${CATEGORY}/${PN}:0"
S=${WORKDIR}/${P/_/-}
src_configure() {
# -DWITH_Soprano=OFF doesn't compile
mycmakeargs="${mycmakeargs}
-DWITH_Soprano=ON"
kde4-base_src_configure
}
|