blob: 40bf17994fd93d0cb1f54ffa765a9ccad5e05ab7 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/kahakai/kahakai-0.6.2_p20040306.ebuild,v 1.3 2004/10/09 19:20:19 usata Exp $
inherit eutils
IUSE="truetype xinerama ruby"
DESCRIPTION="A language agnostic scriptable window manager based on Waimea."
HOMEPAGE="http://kahakai.sf.net/"
#SRC_URI="mirror://sourceforge/kahakai/${P}.tar.bz2"
SRC_URI="mirror://gentoo/${P/_p/-}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc -alpha -sparc"
RDEPEND="virtual/x11
truetype? ( virtual/xft )
ruby? ( || ( >=dev-lang/ruby-1.8 dev-lang/ruby-cvs ) )
>=dev-lang/swig-1.3.20
>=media-libs/imlib2-1.1.0
dev-util/pkgconfig
media-fonts/artwiz-fonts
dev-libs/boost"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.57-r1
>=sys-devel/automake-1.7.2"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd ${S}/src
epatch ${FILESDIR}/${P}-rubyscript-gentoo.diff
}
src_compile() {
./autogen.sh || die
econf \
`use_enable ruby` \
`use_enable xinerama` \
`use_enable truetype xft` || die
emake || die
}
src_install() {
einstall || die
cd doc
dodoc AUTHORS INSTALL NEWS COPYING README ChangeLog TODO
exeinto /etc/X11/Sessions
echo "/usr/bin/kahakai" > ${T}/kahakai
doexe ${T}/kahakai
}
|