summaryrefslogtreecommitdiff
path: root/app-admin/calamares/calamares-999.ebuild
blob: 4373bc4c443d2b0eb46dbdc4c847d14d38a2b3e0 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5
PYTHON_COMPAT=( python3_3 )

inherit eutils cmake-utils python-r1 git-2

EGIT_BRANCH="kogaion"
EGIT_COMMIT="4aa0f9e1f24bf4700d4998627893344a2511051c"
EGIT_REPO_URI="https://github.com/Rogentos/calamares.git"

DESCRIPTION="Distribution-independent installer framework"
HOMEPAGE="http://calamares.io"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

S="${WORKDIR}/${PN}-${PV}"

DEPEND="dev-vcs/git
	>=dev-libs/boost-1.55.0-r2[python_targets_python3_3]
	>=dev-qt/designer-5.4.0:5
	>=dev-qt/linguist-tools-5.4.0:5
	>=dev-qt/qtconcurrent-5.4.0:5
	>=dev-qt/qtcore-5.4.0:5
	>=dev-qt/qtdbus-5.4.0:5
	>=dev-qt/qtdeclarative-5.4.0:5
	>=dev-qt/qtgui-5.4.0:5
	>=dev-qt/qtnetwork-5.4.0:5
	>=dev-qt/qtopengl-5.4.0:5
	>=dev-qt/qtprintsupport-5.4.0:5
	>=dev-qt/qtscript-5.4.0:5
	>=dev-qt/qtsvg-5.4.0:5
	>=dev-qt/qttest-5.4.0:5
	>=dev-qt/qtwidgets-5.4.0:5
	>=dev-qt/qtxml-5.4.0:5
	>=dev-qt/qtxmlpatterns-5.4.0:5
	>=dev-cpp/yaml-cpp-0.5.1
	>=kde-frameworks/extra-cmake-modules-5.10.0"

RDEPEND=">=dev-libs/boost-1.55.0-r2[python_targets_python3_3]
	>=dev-qt/designer-5.4.0:5
	>=dev-qt/linguist-tools-5.4.0:5
	>=dev-qt/qtconcurrent-5.4.0:5
	>=dev-qt/qtcore-5.4.0:5
	>=dev-qt/qtdbus-5.4.0:5
	>=dev-qt/qtdeclarative-5.4.0:5
	>=dev-qt/qtgui-5.4.0:5
	>=dev-qt/qtnetwork-5.4.0:5
	>=dev-qt/qtopengl-5.4.0:5
	>=dev-qt/qtprintsupport-5.4.0:5
	>=dev-qt/qtscript-5.4.0:5
	>=dev-qt/qtsvg-5.4.0:5
	>=dev-qt/qttest-5.4.0:5
	>=dev-qt/qtwidgets-5.4.0:5
	>=dev-qt/qtxml-5.4.0:5
	>=dev-qt/qtxmlpatterns-5.4.0:5
	>=dev-cpp/yaml-cpp-0.5.1
	>=dev-libs/libatasmart-0.19
	>=kde-frameworks/kconfig-5.10.0
	>=kde-frameworks/ki18n-5.10.0
	>=kde-frameworks/kcoreaddons-5.10.0
	>=kde-frameworks/solid-5.10.0
	>=net-misc/rsync-3.1[xattr]
	>=sys-block/parted-3.0
	>=sys-apps/gptfdisk-0.8.10
	>=sys-apps/dmidecode-2.12-r1
	>=sys-fs/squashfs-tools-4.3:0[xattr]
	>=sys-power/upower-0.99.0-r1
	sys-auth/polkit-qt[qt5]
	sys-fs/udisks:2[systemd]
	virtual/udev[systemd]"

src_prepare() {
	# by default, python support is optional and calamares builds fine if is not found
	# on gentoo finding python && boost libs is sometimes problematic, and we really really
	# want python support in our package
	# this patch helps calamares to find python && boost libs and force-enables python
	#
	# epatch "${FILESDIR}/${PN}-find-gentoo-python3-boost-libs.patch"
	#
	# no longer needed, but keep it around, just in case
	# default interpretor must be set to python3.3 for calamares to find required libs

	# If qtchooser is installed, it may break the build, because moc,rcc and uic binaries for wrong qt version may be used.
	# Setting QT_SELECT environment variable will enforce correct binaries (fix taken from vlc ebuild)
	export QT_SELECT=qt5
	
	git submodule init
	git submodule update
}

src_configure() {
	local mycmakeargs=(
		-DWITH_PARTITIONMANAGER=1
	)
	cmake-utils_src_configure
}