blob: 0b9696b3ff236ec4bf96ba3b86ea6b7c86be1e35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
}
|