Skip to content

Commit 585b18e

Browse files
committed
dev-embedded/fdt-viewer: new ebuild, borrowed from upstream with cleanup
Signed-off-by: Stephen L Arnold <[email protected]>
1 parent 017c3e8 commit 585b18e

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Copyright 1999-2025 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
inherit cmake git-r3
7+
8+
DESCRIPTION="Flattened Device Tree Viewer written in Qt"
9+
HOMEPAGE="https://github.com/dev-0x7C6/fdt-viewer"
10+
11+
EGIT_REPO_URI="https://github.com/dev-0x7C6/fdt-viewer.git"
12+
EGIT_SUBMODULES=( '*' 'formatter' )
13+
EGIT_BRANCH="dev"
14+
EGIT_COMMIT="baebd4f656a3835e1b21daa1e6d353edd03c0471"
15+
16+
LICENSE="GPL-3"
17+
KEYWORDS="amd64 arm arm64 x86"
18+
SLOT="0"
19+
20+
DEPEND="
21+
dev-qt/qtbase:6[widgets]
22+
x11-libs/qscintilla
23+
"
24+
25+
RDEPEND="${DEPEND}"
26+
DOCS=( LICENSE )
27+
28+
pkg_postinst() {
29+
xdg_icon_cache_update
30+
xdg_desktop_database_update
31+
}
32+
33+
pkg_postrm() {
34+
xdg_icon_cache_update
35+
xdg_desktop_database_update
36+
}

0 commit comments

Comments
 (0)