Adding initial gnome-console support.
This commit is contained in:
parent
4668d22172
commit
a2dfc389e4
2
x11-terms/gnome-console/Manifest
Normal file
2
x11-terms/gnome-console/Manifest
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
DIST console-42.beta.tar.gz 169382 BLAKE2B e018b330a7166749af5912525f711d91141facb47a1ce32be0ea29a0edc2dd8d62a1e49379ca16cd1ba07d1e479e239ad047bd62997f87d3a5903518de9ddfb0 SHA512 3bb8308daf6de8f7e8e96a4b1f026b910e80d9b6ae091a2c7be5666b13c05c49fb4bfcdd55dda5c077efc1d45e475ba46d0de3a503efedb2ddeb6cdaf41b29fb
|
||||||
|
EBUILD gnome-console-42.ebuild 1006 BLAKE2B 58a5961200b4d323b500407f2cc3dcc793bf37339113d2ba6a16f5a3a7875c1bc43b7da20969d6dffbd6fa89694372e8cb21f609fe5ddb6cfdf77c5f02730b14 SHA512 0ec1d5fd931896a65f9f0870bc4d258079837a75e0843de8bb3d50b36c073e7553ea02689de96af1f405c5de3cdf14bf55d219561ccce12189f61208154cecc3
|
46
x11-terms/gnome-console/gnome-console-42.ebuild
Normal file
46
x11-terms/gnome-console/gnome-console-42.ebuild
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
# Copyright 1999-2022 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
inherit gnome.org gnome2-utils meson xdg
|
||||||
|
|
||||||
|
DESCRIPTION="A terminal emulator for GNOME"
|
||||||
|
HOMEPAGE="https://apps.gnome.org/app/org.gnome.Console/ https://gitlab.gnome.org/GNOME/console"
|
||||||
|
|
||||||
|
SRC_URI="https://gitlab.gnome.org/GNOME/console/-/archive/${PV}.beta/console-${PV}.beta.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="GPL-3+"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="debug +nautilus"
|
||||||
|
|
||||||
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
"
|
||||||
|
DEPEND="${RDEPEND}"
|
||||||
|
# itstool required for help/* with non-en LINGUAS, see bug #549358
|
||||||
|
# xmllint required for glib-compile-resources, see bug #549304
|
||||||
|
BDEPEND="
|
||||||
|
"
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
local emesonargs=(
|
||||||
|
$(meson_use debug devel)
|
||||||
|
$(meson_feature nautilus nautilus)
|
||||||
|
)
|
||||||
|
meson_src_configure
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
meson_src_install
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postinst() {
|
||||||
|
xdg_pkg_postinst
|
||||||
|
gnome2_schemas_update
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postrm() {
|
||||||
|
xdg_pkg_postrm
|
||||||
|
gnome2_schemas_update
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user