diff options
author | 2023-03-13 22:37:08 +0100 | |
---|---|---|
committer | 2023-03-13 22:37:57 +0100 | |
commit | 546c06ecefbbef078d646d051e8f826f3f776549 (patch) | |
tree | 7fa3e40e722c0a1b91b60406a67af309fb79ec4e /www-client/tangram/tangram-2.0.ebuild | |
parent | dev-util/blueprint-compiler: new package; add 0.6.0 (diff) | |
download | gentoo-546c06ecefbbef078d646d051e8f826f3f776549.tar.gz gentoo-546c06ecefbbef078d646d051e8f826f3f776549.tar.bz2 gentoo-546c06ecefbbef078d646d051e8f826f3f776549.zip |
www-client/tangram: new package; add 2.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'www-client/tangram/tangram-2.0.ebuild')
-rw-r--r-- | www-client/tangram/tangram-2.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/www-client/tangram/tangram-2.0.ebuild b/www-client/tangram/tangram-2.0.ebuild new file mode 100644 index 000000000000..22985cb29ff6 --- /dev/null +++ b/www-client/tangram/tangram-2.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome2-utils meson xdg + +DESCRIPTION="Web browser designed to organize and run Web applications" +HOMEPAGE="https://apps.gnome.org/app/re.sonny.Tangram/ + https://github.com/sonnyp/Tangram/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/sonnyp/${PN^}.git" +else + SRC_URI="https://dev.gentoo.org/~xgqt/distfiles/repackaged/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + dev-libs/gjs + gui-libs/gtk:4 + gui-libs/libadwaita:1 + net-libs/webkit-gtk:5 +" +BDEPEND=" + ${RDEPEND} + dev-libs/appstream-glib + dev-util/blueprint-compiler + dev-util/desktop-file-utils +" + +PATCHES=( + "${FILESDIR}"/${PN}-2.0-dont-validate-appstream.patch + "${FILESDIR}"/${PN}-2.0-meson-blueprint-compiler.patch +) + +DOCS=( README.md TODO.md ) + +pkg_postinst() { + gnome2_schemas_update + xdg_pkg_postinst +} + +pkg_postrm() { + gnome2_schemas_update + xdg_pkg_postrm +} |