blob: c8e85523319ed56a63af2646709cfa275599bcd8 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/partitionmanager/partitionmanager-1.1.0.ebuild,v 1.3 2014/10/10 10:58:00 ago Exp $
EAPI=5
KDE_HANDBOOK="optional"
KDE_LINGUAS="ar bg bs ca ca@valencia cs da de el en_GB es et fr gl it lt nb nds
nl pa pl pt pt_BR ro ru sk sl sr sr@ijekavian sr@ijekavianlatin sr@latin sv tr
uk zh_CN zh_TW"
inherit kde4-base
DESCRIPTION="KDE utility for management of partitions and file systems"
HOMEPAGE="http://partitionman.sourceforge.net/"
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE="debug"
RDEPEND="
dev-libs/libatasmart
>=sys-block/parted-3
sys-apps/util-linux
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
src_configure() {
local mycmakeargs=(
-DENABLE_UDISKS2=ON
)
kde4-base_src_configure
}
|