blob: 224c3dd9eb94ff0f87ce70ee9f2435a4082d0796 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.9.9.ebuild,v 1.13 2004/07/23 10:52:06 usata Exp $
inherit eutils
IUSE="nls xinerama truetype kde gnome"
DESCRIPTION="Fluxbox is a lightweight windowmanager for X featuring tabs."
SRC_URI="mirror://sourceforge/fluxbox/${P}.tar.gz"
HOMEPAGE="http://www.fluxbox.org"
# Please note that USE="kde gnome" simply adds support for
# the respective protocols, and does not depend on external libraries.
RDEPEND="virtual/x11
truetype? ( media-libs/freetype )
nls? ( sys-devel/gettext )"
DEPEND=">=sys-devel/autoconf-2.52
${RDEPEND}"
PROVIDE="virtual/blackbox"
SLOT="0"
LICENSE="MIT"
KEYWORDS="x86 ppc sparc amd64 alpha hppa ~ia64 mips ~ppc64 macos"
src_unpack() {
unpack ${A}
cd ${S}
# upstream tell us we probably want to apply this if there's any chance
# anyone will ever try to compile using gcc 3.4.
epatch ${FILESDIR}/${PN}-0.9.9-gcc3.4.patch
}
src_compile() {
econf \
`use_enable nls` \
`use_enable xinerama` \
`use_enable truetype xft` \
`use_enable kde` \
`use_enable gnome` \
--sysconfdir=/etc/X11/${PN} \
${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
dodir /usr/share/fluxbox
make DESTDIR=${D} install || die "make install failed"
dodoc README* AUTHORS TODO* COPYING
dodir /usr/share/xsessions
insinto /usr/share/xsessions
doins ${FILESDIR}/${PN}.desktop
dodir /etc/X11/Sessions
echo "/usr/bin/startfluxbox" > ${D}/etc/X11/Sessions/fluxbox
fperms a+x /etc/X11/Sessions/fluxbox
}
|