blob: c6e7c3acf31c63c6f507e14780f2278f1323f923 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.4.18.ebuild,v 1.3 2004/04/27 17:08:35 pvdabeel Exp $
inherit gnuconfig
IUSE="readline ncurses gtk stroke gnome rplay xinerama cjk imlib"
S=${WORKDIR}/${P}
DESCRIPTION="an extremely powerful ICCCM-compliant multiple virtual desktop window manager"
SRC_URI="ftp://ftp.fvwm.org/pub/fvwm/version-2/${P}.tar.bz2"
HOMEPAGE="http://www.fvwm.org/"
SLOT="0"
KEYWORDS="x86 alpha ppc sparc"
LICENSE="GPL-2 FVWM"
RDEPEND="readline? ( >=sys-libs/readline-4.1
ncurses? ( >=sys-libs/ncurses-5.3-r1 )
!ncurses? ( >=sys-libs/libtermcap-compat-1.2.3 ) )
gtk? ( =x11-libs/gtk+-1.2*
imlib? ( >=media-libs/gdk-pixbuf-0.21.0
>=media-libs/imlib-1.9.14-r1 ) )
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 )
rplay? ( >=media-sound/rplay-3.3.2 )
stroke? ( >=dev-libs/libstroke-0.4 )
>=dev-lang/perl-5.8.0
sys-apps/debianutils
virtual/x11"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
use alpha && gnuconfig_update
# CFLAGS containing comma will break this, so change it for !
sed -i 's#\x27s,xCFLAGSx,$(CFLAGS),\x27#\x27s!xCFLAGSx!$(CFLAGS)!\x27#' ${S}/utils/Makefile.am
}
src_compile() {
local myconf="--libexecdir=/usr/lib"
# use readline in FvwmConsole.
if ! use readline; then
myconf="${myconf} --without-readline-library"
else
myconf="${myconf} --with-readline-library"
# choose ncurses or termcap.
if use ncurses; then
myconf="${myconf} --without-termcap-library"
else
myconf="${myconf} --without-ncurses-library"
fi
fi
# fvwm configure doesnt provide a way to disable gtk support if the
# required libraries are found, this hides them from the script.
if ! use gtk; then
myconf="${myconf} --with-gtk-prefix=${T} --with-imlib-prefix=${T}"
else
if ! use imlib; then
myconf="${myconf} --with-imlib-prefix=${T}"
fi
fi
# link with the gnome libraries, for better integration with the gnome desktop.
if use gnome; then
myconf="${myconf} --with-gnome"
else
myconf="${myconf} --without-gnome"
fi
# rplay is a cool, but little used way of playing sounds over a network
# Fvwm support is pretty good.
if ! use rplay; then
myconf="${myconf} --without-rplay-library"
fi
# xinerama support for those who have multi-headed machines.
if use xinerama; then
myconf="${myconf} --enable-xinerama"
else
myconf="${myconf} --disable-xinerama"
fi
# multibyte character support, chinese/japanese/korean/etc.
if use cjk; then
myconf="${myconf} --enable-multibyte"
else
myconf="${myconf} --disable-multibyte"
fi
# support for mouse gestures using libstroke (very very cool)
if ! use stroke; then
myconf="${myconf} --without-stroke-library"
fi
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
echo "#!/bin/bash" > fvwm2
echo "exec /usr/bin/fvwm2" >> fvwm2
exeinto /etc/X11/Sessions
doexe fvwm2
dodoc AUTHORS ChangeLog COPYING README NEWS docs/ANNOUNCE docs/BUGS \
docs/DEVELOPERS docs/FAQ docs/error_codes docs/color_combos docs/TODO \
docs/fvwm.lsm
}
|