blob: 1b8532bfd5262beb5b24ce28c765df95eb278231 (
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
59
60
61
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/devilspie/devilspie-0.16.ebuild,v 1.5 2006/05/18 16:10:53 chutzpah 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=""
RDEPEND=">=dev-libs/glib-2.6
>=x11-libs/gtk+-2.0
>=x11-libs/libwnck-2.10"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
>=dev-util/intltool-0.20
sys-devel/gettext"
src_unpack() {
unpack "${A}"
cd "${S}"
sed -i "s:\(/usr/share/doc/devilspie\):\1-${PVR}:" devilspie.1 \
|| die "Failed to sed manpage."
epatch "${FILESDIR}/${P}-README.patch"
cp "${FILESDIR}/SYNTAX-${PV}" SYNTAX
sed -ri '/G(|DK|TK)_DISABLE_DEPRECATED/ d' src/Makefile.{in,am}
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog README NEWS SYNTAX TODO
keepdir /etc/devilspie
}
pkg_postinst() {
ewarn
ewarn "Devilspie has been completely rewritten for version 0.16 and is"
ewarn "not backward compatible with previous versions."
ewarn "You will now have to write some s-expressions files"
ewarn "(like in Emacs), and put them either in /etc/devilspie for"
ewarn "system-wide configuration, or in ~/.devilspie for per-user"
ewarn "configuration."
ewarn
ewarn "See /usr/share/doc/${PF}/{README,SYNTAX}.gz for details."
ewarn
}
|