summaryrefslogtreecommitdiff
path: root/app-admin/calamares/calamares-3.1.12-r4.ebuild
blob: 32b3f6ff14fdea4eca95f353e548490544c1d254 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5
PYTHON_COMPAT=( python3_{4,5,6,7,8} )

inherit eutils cmake-utils python-r1

SRC_URI="https://github.com/calamares/calamares/releases/download/v${PV}/${P}.tar.gz"

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

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64"
IUSE="+python"

S="${WORKDIR}/${P}"

DEPEND="
	python? (
		>=dev-libs/boost-1.55.0-r2[${PYTHON_USEDEP}]
	)
	>=dev-qt/designer-5.9.0:5
	>=dev-qt/linguist-tools-5.9.0:5
	>=dev-qt/qtconcurrent-5.9.0:5
	>=dev-qt/qtcore-5.9.0:5
	>=dev-qt/qtdbus-5.9.0:5
	>=dev-qt/qtdeclarative-5.9.0:5
	>=dev-qt/qtgui-5.9.0:5
	>=dev-qt/qtnetwork-5.9.0:5
	>=dev-qt/qtopengl-5.9.0:5
	>=dev-qt/qtprintsupport-5.9.0:5
	>=dev-qt/qtscript-5.9.0:5
	>=dev-qt/qtsvg-5.9.0:5
	>=dev-qt/qttest-5.9.0:5
	>=dev-qt/qtwebengine-5.9.0:5
	>=dev-qt/qtwebchannel-5.9.0:5
	>=dev-qt/qtwidgets-5.9.0:5
	>=dev-qt/qtxml-5.9.0:5
	>=dev-qt/qtxmlpatterns-5.9.0:5
	>=dev-cpp/yaml-cpp-0.5.1
	>=kde-frameworks/extra-cmake-modules-5.18.0
	>=sys-libs/kpmcore-3.2.0"

RDEPEND="app-misc/calamares-runtime[branding]"

src_prepare() {
	# build against kpmcore-3.2
	epatch "${FILESDIR}"/${PN}-kpmcore-3.2.patch
	# don't run locale-gen during system installation, we run it ourselves during stage4 bootstrap...this patch should speed up installation significantly
	epatch "${FILESDIR}"/${PN}-dont-run-locale-gen.patch
	# support auto-unlocking encrypted partitions via OpenRC's dmcrypt service
	epatch -p1 "${FILESDIR}"/${PN}-openrc-dmcrypt-cfg-r1.patch
	# fix grubcfg breakage introduced by Manjaro, we don't rely on plymouthcfg to have splash
	epatch -p1 "${FILESDIR}"/${PN}-dont-rely-on-plymouthcfg.patch
	# replace calamares installer desktop icon
	sed -i "s/Icon=calamares/Icon=start-here/g" "${S}/calamares.desktop"
	# fix installer doesn't start from desktop launcher (IMPROVE THIS UGLY THINGY)
	sed -i "s/pkexec //g" "${S}/calamares.desktop"
	sed -i "s/calamares/calamares-pkexec/g" "${S}/calamares.desktop"
	# 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
}

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

src_install() {
	cmake-utils_src_install
	insinto /usr/bin
	insopts -m 755
	doins ${FILESDIR}/calamares-pkexec
}