blob: e1d1889c65c72d4016f48904875abc8d71317c04 (
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
40
41
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/partitionmanager/partitionmanager-1.0.1.ebuild,v 1.1 2010/01/09 23:51:41 scarabeus Exp $
EAPI="2"
KDE_LINGUAS="bg ca da de el en_GB es et fr gl ja lt nb nds nl nn pa pl pt
pt_BR ro ru sv tr uk zh_CN zh_TW"
KMNAME="extragear/sysadmin"
inherit kde4-base
MY_P="${PN}-${PV/_/-}"
DESCRIPTION="KDE utility for management of partitions and file systems."
HOMEPAGE="http://partitionman.sourceforge.net/"
SRC_URI="mirror://sourceforge/partitionman/${MY_P/beta/BETA}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="debug"
RDEPEND="
sys-apps/parted
sys-libs/e2fsprogs-libs
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
S="${WORKDIR}/${MY_P/beta/BETA}"
src_configure() {
mycmakeargs="${mycmakeargs}
-DPARTMAN_KPART=ON
-DPARTMAN_KCM=ON
"
kde4-base_src_configure
}
|