diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2021-07-28 17:55:17 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2021-07-28 17:56:05 +0200 |
commit | 66d0e24275a9b8636d618a70ab0be387da00c392 (patch) | |
tree | 8cdb0fdd645a338f2a360672e4b08844a3e1fb8e /dev-libs/libgnt | |
parent | app-crypt/mit-krb5: security bump to 1.19.2 (diff) | |
download | gentoo-66d0e24275a9b8636d618a70ab0be387da00c392.tar.gz gentoo-66d0e24275a9b8636d618a70ab0be387da00c392.tar.bz2 gentoo-66d0e24275a9b8636d618a70ab0be387da00c392.zip |
dev-libs/libgnt: Bump to version 2.14.2
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'dev-libs/libgnt')
-rw-r--r-- | dev-libs/libgnt/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libgnt/libgnt-2.14.2.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-libs/libgnt/Manifest b/dev-libs/libgnt/Manifest index be3473656cc6..2d00ba21d93d 100644 --- a/dev-libs/libgnt/Manifest +++ b/dev-libs/libgnt/Manifest @@ -1,2 +1,3 @@ DIST libgnt-2.14.0.tar.xz 102444 BLAKE2B 303dc33e60571ba4b5b9cc8ce477807b9b2ed6b4d1ed14e40c43e146a6d3d156741597befdf3e6c0c6816e9d43955f57f9e1b61e3f1f2d2fc451bf53f7236022 SHA512 0d9c5550374696a0e6ede5246cda3c372d7055d21b9ffaf10be88d6a469bdf18c7dd1113ec612acf4889c0e5686ea87bb0e8348ca8985fd5ff8913afc5813b38 DIST libgnt-2.14.1.tar.xz 106564 BLAKE2B 19eddef51b44fa82982c705415fee43bf7495bc4692a7371fea782bcc21acdb932f15e1e8de6af962a529eea59f54c0b116d96b87ed3616201e6370760fac5b8 SHA512 434fff31a0946dabeaadbabaf96b4a7cf7f2a7da6d7794b7cf8a75f3f959388d89b32ce5921a20d5d6532ac2fd851ec2f6c18cc7cbc5a0ae97a00ff1ee3f74c3 +DIST libgnt-2.14.2.tar.xz 106128 BLAKE2B d3db0ba3a297c14f32cc49b4e5b3392f47031e9406d862520a2f014f4d4e93c13e2ba5a2d61df81637f9dd7961d64ba69b393ee5b3cfebd7eb2768e3f16f29d0 SHA512 17b39e132b44b23486d7d39fa02761997a28abf53f67bf71bbad86d35124e5deb0363d670b2fb5ac99d47256282b0ef6ad1886e12984c868bb0d13ea7ba7d860 diff --git a/dev-libs/libgnt/libgnt-2.14.2.ebuild b/dev-libs/libgnt/libgnt-2.14.2.ebuild new file mode 100644 index 000000000000..17681c49a78e --- /dev/null +++ b/dev-libs/libgnt/libgnt-2.14.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="Pidgin's GLib Ncurses Toolkit" +HOMEPAGE="https://keep.imfreedom.org/libgnt/libgnt" +SRC_URI="mirror://sourceforge/pidgin/${P}.tar.xz" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="doc" + +RDEPEND=" + !<net-im/pidgin-2.14.0 + dev-libs/glib:2 + dev-libs/libxml2 + sys-libs/ncurses:0= +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + virtual/pkgconfig + doc? ( dev-util/gtk-doc ) +" + +PATCHES=( + "${FILESDIR}/${PN}-2.14.0-optional_docs.patch" + "${FILESDIR}/${PN}-2.14.0-tinfo.patch" +) + +src_configure() { + local emesonargs=( + $(meson_use doc) + ) + meson_src_configure +} |