diff options
author | 2021-10-05 12:42:38 +0200 | |
---|---|---|
committer | 2021-10-05 12:42:38 +0200 | |
commit | 1346f8c2ef6c78007bc0e41c771495aaaa217e17 (patch) | |
tree | 12e4f4b0be1be5698bae7578ce13e65f3e444dee /dev-libs/libgnt/libgnt-2.14.3.ebuild | |
parent | sys-auth/polkit: Revbump to install files with required SUID bit again (diff) | |
download | gentoo-1346f8c2ef6c78007bc0e41c771495aaaa217e17.tar.gz gentoo-1346f8c2ef6c78007bc0e41c771495aaaa217e17.tar.bz2 gentoo-1346f8c2ef6c78007bc0e41c771495aaaa217e17.zip |
dev-libs/libgnt: Bump to version 2.14.3
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'dev-libs/libgnt/libgnt-2.14.3.ebuild')
-rw-r--r-- | dev-libs/libgnt/libgnt-2.14.3.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-libs/libgnt/libgnt-2.14.3.ebuild b/dev-libs/libgnt/libgnt-2.14.3.ebuild new file mode 100644 index 000000000000..b0ee4aa1f2cc --- /dev/null +++ b/dev-libs/libgnt/libgnt-2.14.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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 ~riscv ~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-tinfo.patch" +) + +src_configure() { + local emesonargs=( + -Dpython2=false + $(meson_use doc) + ) + meson_src_configure +} |