diff options
author | matoro <matoro@users.noreply.github.com> | 2022-06-29 16:15:15 -0400 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-06-30 10:51:06 +0300 |
commit | a434ee9548bdb12437df73f007b247d946bf44ac (patch) | |
tree | c1327aad6f1eee8ebef91983ac9e08fe81c7aa3a /net-im | |
parent | dev-ml/ocaml-ctypes: dep on findlib with ocamlopt (diff) | |
download | gentoo-a434ee9548bdb12437df73f007b247d946bf44ac.tar.gz gentoo-a434ee9548bdb12437df73f007b247d946bf44ac.tar.bz2 gentoo-a434ee9548bdb12437df73f007b247d946bf44ac.zip |
net-im/pidgin: add IUSE=test with dev-libs/check dep
It turns out that if you "make check" without dev-libs/check installed,
rather than erroring it just runs and empty test suite that
automatically passes. Logic here:
https://keep.imfreedom.org/pidgin/pidgin/file/v2.14.10/configure.ac#l2456
You can actually see that Debian made the same mistake:
https://buildd.debian.org/status/fetch.php?pkg=pidgin&arch=amd64&ver=2.14.10-1&stamp=1654236435&raw=0
Bug: https://bugs.gentoo.org/848579
Closes: https://github.com/gentoo/gentoo/pull/26155
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/pidgin/pidgin-2.14.10.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-im/pidgin/pidgin-2.14.10.ebuild b/net-im/pidgin/pidgin-2.14.10.ebuild index e1c4288370b3..2b6b59d5482c 100644 --- a/net-im/pidgin/pidgin-2.14.10.ebuild +++ b/net-im/pidgin/pidgin-2.14.10.ebuild @@ -19,7 +19,8 @@ SLOT="0/2" # libpurple version KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux" IUSE="aqua dbus debug doc eds gadu gnutls groupwise +gstreamer +gtk idn meanwhile ncurses networkmanager nls perl pie prediction python sasl spell tcl -tk v4l +xscreensaver zephyr zeroconf" +test tk v4l +xscreensaver zephyr zeroconf" +RESTRICT="!test? ( test )" # dbus requires python to generate C code for dbus bindings (thus DEPEND only). # finch uses libgnt that links with libpython - {R,}DEPEND. But still there is @@ -90,6 +91,7 @@ BDEPEND=" virtual/pkgconfig doc? ( app-doc/doxygen ) !gtk? ( nls? ( ${NLS_DEPEND} ) ) + test? ( >=dev-libs/check-0.9.4 ) " DOCS=( AUTHORS HACKING NEWS README ChangeLog ) |