blob: 1e4399f7cc1deffa99c7a5065ab58e312d6eb22d (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/devilspie/devilspie-0.10.ebuild,v 1.6 2005/06/25 14:18:09 gustavoz Exp $
inherit eutils
DESCRIPTION="A Window Matching utility similar to Sawfish's Matched Windows feature"
HOMEPAGE="http://www.burtonini.com/blog/computers/devilspie"
SRC_URI="http://www.burtonini.com/computing/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ppc sparc x86"
IUSE=""
IUSE=""
DEPEND=">=dev-util/pkgconfig-0.12.0
>=dev-util/gob-2.0.3
dev-libs/libxslt
dev-lang/perl"
RDEPEND=">=x11-libs/gtk+-2.0.0
>=x11-libs/libwnck-0.17
>=x11-libs/startup-notification-0.5
dev-libs/libxml2"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-make-check.patch
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR=${D} install || die "emake install failed"
dodoc AUTHORS ChangeLog README NEWS TODO \
sample-config.xml devilspie.dtd
dohtml devilspie-reference.html
}
pkg_postinst() {
einfo
einfo "A sample config file has been installed in /usr/share/doc/${P}"
einfo "as sample-config.xml.gz. Also installed there is the DTD for"
einfo "the config file. It is called devilspie.dtd.gz"
ewarn
ewarn "BEFORE starting devilspie, you MUST create a .devilspie.xml file"
ewarn "in your home directory so that it knows what to do. Please use"
ewarn "the sample config file as a starting point."
ewarn
}
|