blob: 100c964f92e6dc77ae24d94c3701dca704100032 (
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/skippy/skippy-0.5.0.ebuild,v 1.11 2006/10/11 11:54:14 nelchael Exp $
inherit eutils
IUSE=""
DESCRIPTION="A full-screen task-switcher providing Apple Expose-like functionality with various WMs"
HOMEPAGE="http://thegraveyard.org/skippy.php"
SRC_URI="http://thegraveyard.org/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
RDEPEND="|| ( ( x11-libs/libXext
x11-libs/libX11
x11-libs/libXinerama
x11-libs/libXmu
)
virtual/x11
)
virtual/xft"
DEPEND="${RDEPEND}
|| ( ( x11-proto/xproto
x11-proto/xineramaproto
)
virtual/x11
)
dev-util/pkgconfig
>=media-libs/imlib2-1.1.0"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-pointer-size.patch
}
src_compile() {
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} BINDIR=/usr/bin install || die
insinto /usr/share/${P}
doins skippyrc-default
dodoc CHANGELOG
}
pkg_postinst() {
einfo
einfo "You should copy /usr/share/${P}/skippyrc-default to ~/.skippyrc"
einfo "and edit the keysym used to invoke skippy"
einfo "(Find out the keysym name using 'xev')"
einfo
echo
}
|