diff options
author | Ionen Wolkens <sudinave@gmail.com> | 2021-02-25 10:15:17 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-02-25 10:15:17 +0100 |
commit | db0c04dbe99a659bf756d6911bdbb63e06003f95 (patch) | |
tree | 24344cedc083c7711ca1ec9ebddc067a0572f13a /x11-misc/devilspie/devilspie-0.23-r2.ebuild | |
parent | x11-misc/devilspie: adopt through proxy-maint (diff) | |
download | gentoo-db0c04dbe99a659bf756d6911bdbb63e06003f95.tar.gz gentoo-db0c04dbe99a659bf756d6911bdbb63e06003f95.tar.bz2 gentoo-db0c04dbe99a659bf756d6911bdbb63e06003f95.zip |
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 <sudinave@gmail.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-misc/devilspie/devilspie-0.23-r2.ebuild')
-rw-r--r-- | x11-misc/devilspie/devilspie-0.23-r2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
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 000000000000..e515002c9246 --- /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 +} |