blob: c608cf0df31b6cf2aae1e796eba253442ff595c2 (
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
|
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
"
inherit cargo gnome2-utils meson xdg-utils
DESCRIPTION="Travel with all your train information in one place"
HOMEPAGE="
https://mobile.schmidhuberj.de/railway/
https://gitlab.com/schmiddi-on-mobile/railway/
"
SRC_URI="
https://gitlab.com/schmiddi-on-mobile/railway/-/archive/${PV}/${P}.tar.bz2
${CARGO_CRATE_URIS}
"
if [[ ${PKGBUMPING} != ${PVR} ]]; then
SRC_URI+="
https://github.com/gentoo-crate-dist/railway/releases/download/${PV}/${P}-crates.tar.xz
"
fi
LICENSE="GPL-3+"
# Dependent crate licenses
LICENSE+="
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT Unicode-3.0
|| ( AGPL-3+ EUPL-1.2 )
"
# ring
LICENSE+=" openssl"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
>=dev-libs/glib-2.66
dev-libs/openssl:=
>=gui-libs/gtk-4.14:4
>=gui-libs/libadwaita-1.6.0
media-libs/graphene
"
RDEPEND="
${DEPEND}
"
BDEPEND="
dev-libs/glib
dev-util/blueprint-compiler
sys-devel/gettext
"
BUILD_DIR=${S}/build
ECARGO_HOME=${BUILD_DIR}/cargo-home
QA_PREBUILT=usr/bin/diebahn
src_prepare() {
default
sed -e "s:get_option('profile.*:$(usex debug false true):" \
-i src/meson.build || die
}
src_install() {
meson_src_install
dosym diebahn /usr/bin/railway
}
pkg_postinst() {
gnome2_schemas_update
xdg_icon_cache_update
}
pkg_postrm() {
gnome2_schemas_update
xdg_icon_cache_update
}
|