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 6218913835D for ; Thu, 25 Feb 2021 09:16:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 675BBE090F; Thu, 25 Feb 2021 09:16:04 +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 42ECBE092B for ; Thu, 25 Feb 2021 09:16:04 +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 1BFC3340C54 for ; Thu, 25 Feb 2021 09:16:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7B1D567 for ; Thu, 25 Feb 2021 09:15:58 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1614244517.db0c04dbe99a659bf756d6911bdbb63e06003f95.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/devilspie/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/devilspie/devilspie-0.23-r2.ebuild X-VCS-Directories: x11-misc/devilspie/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: db0c04dbe99a659bf756d6911bdbb63e06003f95 X-VCS-Branch: master Date: Thu, 25 Feb 2021 09:15:58 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8098cb4a-f4f3-4a3a-abc4-85106b5ed76f X-Archives-Hash: a66c338cfcc033368cae8d99e122736f commit: db0c04dbe99a659bf756d6911bdbb63e06003f95 Author: Ionen Wolkens gmail com> AuthorDate: Thu Feb 25 09:15:17 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Feb 25 09:15:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db0c04db x11-misc/devilspie: EAPI-7 bump + remove obsolete workarounds eautoreconf was formerly used to fix a build failure with gtk+:2 (was bug #339806), however using gtk+:3 now. Now properly links with -lX11 by itself (was bug #370103) -Werror isn't used anymore without eautoreconf (was bug #594488) Also removed keepdir, directory doesn't need to force-exist and likely scarcely used as users should have rules in their $HOME Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Ionen Wolkens gmail.com> Signed-off-by: David Seifert gentoo.org> x11-misc/devilspie/devilspie-0.23-r2.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/x11-misc/devilspie/devilspie-0.23-r2.ebuild b/x11-misc/devilspie/devilspie-0.23-r2.ebuild new file mode 100644 index 00000000000..e515002c924 --- /dev/null +++ b/x11-misc/devilspie/devilspie-0.23-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Window matching utility similar to Sawfish's Matched Windows" +HOMEPAGE="http://www.burtonini.com/blog/tag/devilspie.html" +SRC_URI="http://www.burtonini.com/computing/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/gtk+:3[X] + x11-libs/libX11 + x11-libs/libwnck:3" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto" +BDEPEND=" + dev-util/intltool + virtual/pkgconfig" + +src_prepare() { + default + sed -i "/doc\//s@devilspie..@${PF}/@" devilspie.1 || die +}