blob: ebf426f67958e9e3dcf6a726d59ccc795e07b8f8 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python3_4 )
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_targets_python3_4]
)
>=dev-qt/designer-5.6.0:5
>=dev-qt/linguist-tools-5.6.0:5
>=dev-qt/qtconcurrent-5.6.0:5
>=dev-qt/qtcore-5.6.0:5
>=dev-qt/qtdbus-5.6.0:5
>=dev-qt/qtdeclarative-5.6.0:5
>=dev-qt/qtgui-5.6.0:5
>=dev-qt/qtnetwork-5.6.0:5
>=dev-qt/qtopengl-5.6.0:5
>=dev-qt/qtprintsupport-5.6.0:5
>=dev-qt/qtscript-5.6.0:5
>=dev-qt/qtsvg-5.6.0:5
>=dev-qt/qttest-5.6.0:5
>=dev-qt/qtwebengine-5.6.0:5
>=dev-qt/qtwebchannel-5.6.0:5
>=dev-qt/qtwidgets-5.6.0:5
>=dev-qt/qtxml-5.6.0:5
>=dev-qt/qtxmlpatterns-5.6.0:5
>=dev-cpp/yaml-cpp-0.5.1
>=kde-frameworks/extra-cmake-modules-5.18.0
>=sys-libs/kpmcore-3.0.2"
RDEPEND=">=app-misc/calamares-runtime-1.0[branding]"
src_prepare() {
# by default, calamares writes UUID=partition-uuid in fstab, regardless
# is luks or not. This is utterly broken for many reasons. The patch
# below will make calamares to write proper /dev/mapper entries.
epatch "${FILESDIR}"/${P}-luks-fstab-write-devmapper.patch
# support auto-unlocking encrypted /home partition via OpenRC's dmcrypt service
epatch -p1 "${FILESDIR}"/${P}-openrc-dmcrypt-cfg.patch
# replace calamares installer desktop icon
sed -i "s/Icon=calamares/Icon=redcore-logo/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
}
|