diff options
author | Alexey Sokolov <sokolov@google.com> | 2020-09-26 23:39:16 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-10-15 18:32:41 +0000 |
commit | 8d7f8e06b87d312f42e347bc6f97fa0fadebcbec (patch) | |
tree | f98fdfcbba40248ddea6ff7777952cc33b5398c4 /games-board | |
parent | sys-devel/autoconf-wrapper: Style fix (diff) | |
download | gentoo-8d7f8e06b87d312f42e347bc6f97fa0fadebcbec.tar.gz gentoo-8d7f8e06b87d312f42e347bc6f97fa0fadebcbec.tar.bz2 gentoo-8d7f8e06b87d312f42e347bc6f97fa0fadebcbec.zip |
games-board/gtkatlantic: version 0.6.3
Closes: https://bugs.gentoo.org/709398
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/gtkatlantic/Manifest | 1 | ||||
-rw-r--r-- | games-board/gtkatlantic/gtkatlantic-0.6.3.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/games-board/gtkatlantic/Manifest b/games-board/gtkatlantic/Manifest index ed1f75f49b6c..1fa903cbb110 100644 --- a/games-board/gtkatlantic/Manifest +++ b/games-board/gtkatlantic/Manifest @@ -1 +1,2 @@ DIST gtkatlantic-0.6.1.tar.bz2 505701 BLAKE2B 5580b6bba4836e99d6c06cda4b3bef9236adf828cfd909497082922a8b3cfe158f4240a399ea879f6700f9c66f29d81926963cbf145af20bd28e2bed33241e8a SHA512 8388cbdd4c73d56eacb18a645bdd2d1f6e1fa8d21be972eaba1c4d6af6d0681a2a54909a82d6846ddd785b46b0ad99193e5afea528c5662956ff89a1e6e366df +DIST gtkatlantic-0.6.3.tar.bz2 546656 BLAKE2B e444f19e9757d5a276ede28f868f226e8cc0b4ed3806af54d56721e20d11df6b9b33265b6f51cd5a24608df8ce9c88ccc4ac0c093b1c3c6bd32f35a4e7cc5565 SHA512 2cca71492f4aac1a3c3a55e51eb389a8f1481a51b4e0be00dfb6c2317eba320a30f4e9d555375300ff56ddd65d2f313e8356a7ec3dab38963904b9a52f3138c6 diff --git a/games-board/gtkatlantic/gtkatlantic-0.6.3.ebuild b/games-board/gtkatlantic/gtkatlantic-0.6.3.ebuild new file mode 100644 index 000000000000..c274a53d9ce5 --- /dev/null +++ b/games-board/gtkatlantic/gtkatlantic-0.6.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools xdg-utils + +DESCRIPTION="Monopoly-like game that works with the monopd server" +HOMEPAGE="http://gtkatlantic.gradator.net/" +SRC_URI="http://download.tuxfamily.org/gtkatlantic/downloads/v0.6/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/libxml2 + media-libs/libpng:0= + x11-libs/gtk+:3" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |