blob: 2a1e255eff1682fedf8ec5207b2920bb85aca3ac (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.1.14.ebuild,v 1.1 2002/12/09 23:33:15 mkeadle Exp $
IUSE="nls"
inherit commonbox flag-o-matic
S=${WORKDIR}/${P}
DESCRIPTION="Window manager based on Blackbox and pwm -- has tabs."
SRC_URI="http://download.sourceforge.net/${PN}/${P}.tar.bz2"
HOMEPAGE="http://fluxbox.sf.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc "
mydoc="ChangeLog COPYING NEWS"
myconf="--enable-xinerama"
if pkg-config xft
then
CXXFLAGS="${CXXFLAGS} -I/usr/include/freetype2"
fi
filter-flags -fno-exceptions
#export WANT_AUTOMAKE_1_6=1
#export WANT_AUTOCONF_2_5=1
src_compile() {
commonbox_src_compile
cd data
make \
pkgdatadir=/usr/share/commonbox init
}
src_install() {
commonbox_src_install
cd data
insinto /usr/share/commonbox
doins init
insinto /usr/share/commonbox/fluxbox
doins keys
rm -f ${D}/usr/bin/fluxbox-generate_menu
}
|