From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 000371382C5 for ; Sat, 10 Mar 2018 06:03:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A53AFE0891; Sat, 10 Mar 2018 06:03:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8094AE0891 for ; Sat, 10 Mar 2018 06:03:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 802F2335C09 for ; Sat, 10 Mar 2018 06:03:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90493249 for ; Sat, 10 Mar 2018 06:03:03 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1520661760.67e5d28160e555782c96408945c1630c8d8c4847.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xwininfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/xwininfo/Manifest x11-apps/xwininfo/xwininfo-1.1.4.ebuild X-VCS-Directories: x11-apps/xwininfo/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 67e5d28160e555782c96408945c1630c8d8c4847 X-VCS-Branch: master Date: Sat, 10 Mar 2018 06:03:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 57b42dc6-40dc-4e25-aa43-f230420393c9 X-Archives-Hash: faacceef357e318cf62a83961015daef commit: 67e5d28160e555782c96408945c1630c8d8c4847 Author: Matt Turner gentoo org> AuthorDate: Sat Mar 10 06:01:01 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Mar 10 06:02:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e5d281 x11-apps/xwininfo: Version bump to 1.1.4 x11-apps/xwininfo/Manifest | 1 + x11-apps/xwininfo/xwininfo-1.1.4.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/x11-apps/xwininfo/Manifest b/x11-apps/xwininfo/Manifest index 8c28abca30f..74838e2aa52 100644 --- a/x11-apps/xwininfo/Manifest +++ b/x11-apps/xwininfo/Manifest @@ -1 +1,2 @@ DIST xwininfo-1.1.3.tar.bz2 157512 BLAKE2B eba1f98cf8aa8afc68a5bc0f538e1e0588a38bd0022ba0a2bf6da7e2cbcd4459111aed37f88b8d46054f8c3e52e435d0c95a8f7c9b1247580dde812a3bd3715c SHA512 b4c3c72de157d33e309694be96dcafabb3240c1883fb3caf44843cba8b90fe09496eb4ab061eba9107115d76ca59a8ec660e11ff968e422ab35cd5e1749ca466 +DIST xwininfo-1.1.4.tar.bz2 169159 BLAKE2B 4bdf7321eba8e2cd078c3220e3135ca1b044461ab90b8daa350beed1feb53f02dd9dd4c1192be6dd6b9ef2a9dc028c4a9c464f3124590e6195aca7547ed61830 SHA512 d3ab103a0a311e08d1eabc4346750c21eb7d2fbcdc27cab0989a2624b9cd488911614fcf9832603353450114b1231a8f8262cab16e090a0d458d83ec7b6b959b diff --git a/x11-apps/xwininfo/xwininfo-1.1.4.ebuild b/x11-apps/xwininfo/xwininfo-1.1.4.ebuild new file mode 100644 index 00000000000..4e7c0e6044c --- /dev/null +++ b/x11-apps/xwininfo/xwininfo-1.1.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit xorg-2 flag-o-matic + +DESCRIPTION="window information utility for X" + +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris ~x86-winnt" +IUSE="" + +RDEPEND=">=x11-libs/libxcb-1.6" +DEPEND="${RDEPEND} + x11-libs/libX11 + >=x11-proto/xproto-7.0.17" + +pkg_setup() { + # interix has a _very_ old iconv in libc, however, including + # iconv.h redefines those symbols to libiconv_*, which then + # are unresolved, as the configure check is old and dumb. + [[ ${CHOST} == *-interix* || ${CHOST} == *-solaris* ]] && + append-libs -liconv +}