diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-09-08 01:07:24 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-09-08 01:07:24 +0100 |
commit | e3cf2c86fca1750343c1885311f857f185ee4f2d (patch) | |
tree | d9d1fbc20509d4c90f57fb2d9e1459bc8034c831 /gui-libs/amtk | |
parent | f1af93971b7490792d8541bc790e0d8c6d787059 (diff) |
gentoo resync : 08.09.2019
Diffstat (limited to 'gui-libs/amtk')
-rw-r--r-- | gui-libs/amtk/Manifest | 2 | ||||
-rw-r--r-- | gui-libs/amtk/amtk-5.0.1.ebuild | 34 |
2 files changed, 36 insertions, 0 deletions
diff --git a/gui-libs/amtk/Manifest b/gui-libs/amtk/Manifest index e276cc5365aa..dd7ad9339d5d 100644 --- a/gui-libs/amtk/Manifest +++ b/gui-libs/amtk/Manifest @@ -1,3 +1,5 @@ DIST amtk-5.0.0.tar.xz 368524 BLAKE2B dae5e6c832fd0cb94a7afa0524a9ce863f72023a3648b01004c834f6a17fa285ccbe4d3ec87b54101b4fa644c3530ec6f4faebf3fa971ef201a4e6455a3fff54 SHA512 86433a7b314bfbdd00cd53a7223561645b0ebd40ec519f97b61e8df073b88c76425182ad71a49794090a51eddf68b81f4c7d88c4bf6a618311aa92908f5bea73 +DIST amtk-5.0.1.tar.xz 369192 BLAKE2B b31b60045ea122c814a719877ada69fba3753d33c30ad28b5d0c97cd358ae15d98c8f88c038b95aa64e8d5d9b23e3143b75d571f1dc32dc4178af49b0ecf8faf SHA512 21c581b9ea44bc6e9c13d5c9e6298b55a0f28b1943fab1943d2a8b53a9b82f8c29a983f73e5a4a66a16912645ff8c29023490380d6e6c3de157b9c35f56a4e00 EBUILD amtk-5.0.0.ebuild 742 BLAKE2B 99650b32e5f479f2a8444b7d9bf36f03eb6687c34db21c6fe5a2c7a7e56d1ee3b4e2753947b6d91ca045d515c94593a0c99e44eba862369ee3cdc82a1165cbed SHA512 baf4dbb3b4bb87cb69f6df1e484caa9c29e5058a4786fbd20466ea0ce3e822ad3a71bba42ff5afd6809a2b2d5afc9ea9525c1b044c2b9a7b875c6d717b4a54c2 +EBUILD amtk-5.0.1.ebuild 744 BLAKE2B 15751b5fe540b26eff65cea48299048471d32dd6b04cfe40a56dba1ed2f053ef567048bfa202479bec79508aa75d59a56d89212009d0205d03f22a42c8f42773 SHA512 9b172e2591cedce3e061664e0d4035df1c6399ade0b8732bdba0e95a170a8cb8abd4394b4b334a654b3e8620a9fea0653801f133ec3df26d0bd8aa6061e7b9bb MISC metadata.xml 249 BLAKE2B e71e1b95fee768c696704acbf7e3cf0e599ed2bc8de92bae0141d1194ef9e842bdc292798904487a9b90ddfda9b0e84abd3b76b1518576c1d288240e4e46f110 SHA512 c40662134899a5c9f0369a1017806f35adf3280a0b3c91726f7a8ca6012a073a8b471583f5bfb6fe95faac1dcf607e8e2e43f8c91d48ec46f4a8824e2f551506 diff --git a/gui-libs/amtk/amtk-5.0.1.ebuild b/gui-libs/amtk/amtk-5.0.1.ebuild new file mode 100644 index 000000000000..d40019fdaa5e --- /dev/null +++ b/gui-libs/amtk/amtk-5.0.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2 + +DESCRIPTION="Actions, Menus and Toolbars Kit for GTK+ applications" +HOMEPAGE="https://wiki.gnome.org/Projects/Amtk" + +LICENSE="LGPL-2.1+" +SLOT="5" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="+introspection" + +RDEPEND=" + >=dev-libs/glib-2.52:2 + >=x11-libs/gtk+-3.22:3 + introspection? ( >=dev-libs/gobject-introspection-1.42:= ) +" +DEPEND="${DEPEND} + >=sys-devel/gettext-0.19.6 + dev-util/glib-utils + >=dev-util/gtk-doc-am-1.25 + virtual/pkgconfig +" + +src_configure() { + gnome2_src_configure \ + --disable-gtk-doc \ + --disable-installed-tests \ + $(use_enable introspection) \ + --disable-valgrind +} |