blob: 8c6213f1031e165141706b35fd5c892f8b28bdf9 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KMNAME="extragear/sysadmin"
KDE_SCM="svn"
inherit kde4-base
DESCRIPTION="KDE utility for management of partitions and file systems."
HOMEPAGE="http://partitionman.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="0"
IUSE="debug"
RDEPEND="
dev-libs/libatasmart
sys-block/parted
sys-libs/e2fsprogs-libs
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
src_configure() {
mycmakeargs=(
-DPARTMAN_KPART=ON
-DPARTMAN_KCM=ON
)
kde4-base_src_configure
}
|