mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
Use same KEYWORDS like in pidgin as this is an outsourced pidgin plugin Bug: https://bugs.gentoo.org/727878 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
38 lines
713 B
Bash
38 lines
713 B
Bash
# Copyright 1999-2020 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://bitbucket.org/pidgin/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 ~x86-macos"
|
|
IUSE="doc"
|
|
|
|
RDEPEND="
|
|
dev-libs/glib:2
|
|
dev-libs/libxml2
|
|
sys-libs/ncurses:0=
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
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
|
|
}
|