blob: e86a94094ddc9914a3385d9f720ead77a4a31ad2 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3-svn/ion3-svn-20041219.ebuild,v 1.1 2004/12/19 18:28:47 twp Exp $
inherit eutils subversion
DESCRIPTION="A tiling tabbed window manager designed with keyboard users in mind"
HOMEPAGE="http://www.iki.fi/tuomov/ion/"
LICENSE="LGPL-2.1"
SLOT="2"
KEYWORDS="~ppc ~sparc ~x86 ~amd64"
IUSE="xinerama"
DEPEND="virtual/x11
app-misc/run-mailcap
>=dev-lang/lua-5.0.2
>=sys-devel/libtool-1.4.3
>=dev-libs/libtu-svn-20040902
!x11-wm/ion3"
ESVN_REPO_URI="http://tao.uab.es/ion/svn/ion/trunk"
ESVN_PROJECT="ion-snapshot"
ESVN_BOOTSTRAP="./predist.sh -snapshot"
src_compile() {
local myconf=""
if has_version '>=x11-base/xfree-4.3.0'; then
myconf="${myconf} --disable-xfree86-textprop-bug-workaround"
fi
autoreconf
econf \
--sysconfdir=/etc/X11 \
`use_enable xinerama` \
${myconf} || die
emake \
DOCDIR=/usr/share/doc/${PF} || die
}
src_install() {
make \
prefix=${D}/usr \
PREFIX=${D}/usr \
ETCDIR=${D}/etc/X11/ion3 \
SHAREDIR=${D}/usr/share/ion3 \
MANDIR=${D}/usr/share/man \
DOCDIR=${D}/usr/share/doc/${PF} \
LOCALEDIR=${D}/usr/share/locale \
LIBDIR=${D}/usr/lib \
MODULEDIR=${D}/usr/lib/ion3/mod \
LCDIR=${D}/usr/lib/ion3/lc \
VARDIR=${D}/var/cache/ion3 \
install || die
prepalldocs
insinto /usr/include/ion3
doins *.h *.mk
insinto /usr/include/ion3/build
doins build/mkexports.lua
for i in de ioncore luaextl mod_floatws mod_ionws mod_menu mod_query mod_sm mod_sp; do
insinto /usr/include/ion3/${i}
doins ${i}/*.h
done
echo -e "#!/bin/sh\n/usr/bin/ion3" > ${T}/ion3
echo -e "#!/bin/sh\n/usr/bin/pwm3" > ${T}/pwm3
exeinto /etc/X11/Sessions
doexe ${T}/ion3 ${T}/pwm3
insinto /usr/share/xsessions
doins ${FILESDIR}/ion3.desktop ${FILESDIR}/pwm3.desktop
}
|