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 097161382C5 for ; Thu, 4 Jan 2018 22:17:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4757AE09EC; Thu, 4 Jan 2018 22:17:06 +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 29486E09EC for ; Thu, 4 Jan 2018 22:17:06 +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 48C65335C30 for ; Thu, 4 Jan 2018 22:17:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 105DC17B for ; Thu, 4 Jan 2018 22:17:04 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1515104217.de9c3366dd7f95805538db7dea8121a0a35ffbd2.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/terminatorx/terminatorx-4.0.1-r1.ebuild media-sound/terminatorx/terminatorx-4.0.1.ebuild X-VCS-Directories: media-sound/terminatorx/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: de9c3366dd7f95805538db7dea8121a0a35ffbd2 X-VCS-Branch: master Date: Thu, 4 Jan 2018 22:17:04 +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: 12e7247b-ee0b-4a22-b169-80d7c5a63482 X-Archives-Hash: 54b66f0eb7825b79b6c5457c4e1b86c2 commit: de9c3366dd7f95805538db7dea8121a0a35ffbd2 Author: Pacho Ramos gentoo org> AuthorDate: Thu Jan 4 22:16:18 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Jan 4 22:16:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de9c3366 media-sound/terminatorx: Force building with X support (-X fails to build, bug #636832) Package-Manager: Portage-2.3.19, Repoman-2.3.6 ...orx-4.0.1.ebuild => terminatorx-4.0.1-r1.ebuild} | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/media-sound/terminatorx/terminatorx-4.0.1.ebuild b/media-sound/terminatorx/terminatorx-4.0.1-r1.ebuild similarity index 78% rename from media-sound/terminatorx/terminatorx-4.0.1.ebuild rename to media-sound/terminatorx/terminatorx-4.0.1-r1.ebuild index 745580ace2d..3ce3c4f5ac0 100644 --- a/media-sound/terminatorx/terminatorx-4.0.1.ebuild +++ b/media-sound/terminatorx/terminatorx-4.0.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -13,7 +13,8 @@ SRC_URI="http://www.terminatorx.org/dist/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="X alsa debug mad pulseaudio vorbis sox" +# Making X optional fails when disabled: https://bugs.gentoo.org/636832 +IUSE="alsa debug mad pulseaudio vorbis sox" RDEPEND=" alsa? ( media-libs/alsa-lib ) @@ -25,12 +26,12 @@ RDEPEND=" x11-libs/gtk+:3 >=dev-libs/glib-2.2:2 - X? ( - x11-libs/libXi - x11-libs/libXxf86dga - x11-proto/xproto - x11-proto/inputproto - x11-proto/xf86dgaproto ) + x11-libs/libXi + x11-libs/libXxf86dga + x11-proto/xproto + x11-proto/inputproto + x11-proto/xf86dgaproto + dev-libs/libxml2:2 media-libs/audiofile:= media-libs/ladspa-sdk @@ -52,11 +53,11 @@ PATCHES=( src_configure() { gnome2_src_configure \ + --enable-x11 \ $(use_enable alsa) \ $(use_enable debug) \ $(use_enable mad) \ $(use_enable pulseaudio pulse) \ $(use_enable vorbis) \ - $(use_enable sox) \ - $(use_enable X x11) + $(use_enable sox) }