blob: 5b81eef5597956eb3c5de7b87cca1bbfed8989c7 (
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
|
# Copyright 1999-2024 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A simple bash + python script to restore your i3 session"
HOMEPAGE="https://github.com/jdholtz/i3-restore/"
SRC_URI="https://github.com/jdholtz/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
LICENSE="GPL-3"
SLOT="0"
PYTHON_COMPAT=( python3_{7..12} )
inherit python-single-r1
RDEPEND="
x11-wm/i3
"${PYTHON_DEPS}"
"
DEPEND="
x11-misc/xdotool
app-misc/jq
$(python_gen_cond_dep \
'dev-python/psutil[${PYTHON_USEDEP}]' )
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_prepare() {
sed -i 's#CURR_DIR="$(dirname "${0}")"#CURR_DIR=/usr/libexec/i3-restore#' i3-save i3-restore || die "Sed error"
sed -i "s/version=.*/version=${PV}/" utils/common.bash
default
}
src_install() {
keepdir /usr/libexec/${PN}/logs || die
fperms 777 /usr/libexec/${PN}/logs || die
insinto "/usr/libexec/${PN}"
doins -r utils
dobin i3-save
dobin i3-restore
python_moduleinto "/usr/libexec/${PN}"
python_domodule programs
}
pkg_postinst() {
elog "Usage: i3-save and i3-restore"
elog "See the documentation about automatic saving and restoring https://github.com/jdholtz/i3-restore/?tab=readme-ov-file#automating-the-script"
}
|