blob: 59c3245c656d5a19bba364aa00692705951b51a7 (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit meson multilib-minimal
DESCRIPTION="Helper for enabling better Steam integration on Linux"
HOMEPAGE="https://github.com/clearlinux/linux-steam-integration"
SRC_URI="https://github.com/clearlinux/"${PN}"/releases/download/v"${PV}"/"${P}".tar.xz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="app-emulation/steam
net-libs/libnm-glib"
DEPEND="x11-libs/gtk+:3
virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/bzip2.patch )
multilib_src_configure() {
local emesonargs=(
-Dwith-shim=co-exist \
-Dwith-frontend=true \
-Dwith-steam-binary=/usr/bin/steam \
-Dwith-new-libcxx-abi=true
)
meson_src_configure
}
multilib_src_install() {
meson_src_install
}
|