blob: 47eb619b6b1664a31854524a09d9a945f7078601 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop pam prefix systemd tmpfiles unpacker xdg
DESCRIPTION="Microsoft Intune Company Portal to access a corporate environment"
HOMEPAGE="https://learn.microsoft.com/mem/intune/"
SRC_URI="https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/${PN:0:1}/${PN}/${PN}_${PV}-jammy_amd64.deb"
S="${WORKDIR}"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="-* ~amd64"
RESTRICT="bindist mirror"
RDEPEND="
app-accessibility/at-spi2-core:2
app-crypt/libsecret
dev-db/sqlite:3
dev-libs/glib:2
dev-libs/openssl:0/3
net-libs/libsoup:2.4
net-libs/webkit-gtk:4/37
net-misc/curl
sys-apps/bubblewrap
sys-apps/dbus
sys-apps/lsb-release
sys-apps/systemd
sys-apps/util-linux
sys-auth/microsoft-identity-broker
sys-auth/pambase[pwquality]
sys-auth/polkit
sys-libs/pam
sys-libs/zlib
x11-libs/gtk+:3
x11-libs/libX11
x11-libs/pango
|| (
www-client/microsoft-edge
www-client/microsoft-edge-beta
www-client/microsoft-edge-dev
)
"
QA_PREBUILT="*"
DIR="/opt/microsoft/intune"
src_unpack() {
unpack_deb ${A}
}
src_install() {
exeinto "${DIR}"/bin
newexe $(prefixify_ro "${FILESDIR}"/wrapper) intune-portal
dosym intune-portal /opt/microsoft/intune/bin/intune-agent
dosym intune-portal /opt/microsoft/intune/bin/intune-daemon
exeinto "${DIR}"/libexec
doexe "${DIR#/}"/bin/*
insinto "${DIR}"/share
doins -r "${DIR#/}"/share/*
insinto /usr/share/polkit-1/actions
doins usr/share/polkit-1/actions/com.microsoft.intune.policy
systemd_dounit lib/systemd/system/*
systemd_douserunit lib/systemd/user/*
dopammod usr/lib/x86_64-linux-gnu/security/pam_intune.so
dotmpfiles usr/lib/tmpfiles.d/intune.conf
domenu usr/share/applications/*.desktop
doicon -s 48 usr/share/icons/hicolor/48x48/*/*.png
}
pkg_postinst() {
touch "${EROOT}"/etc/pam.d/common-password || die
tmpfiles_process intune.conf
xdg_pkg_postinst
}
|