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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.9.14-r1.ebuild,v 1.1 2005/09/23 01:40:02 ciaranm Exp $
inherit eutils
IUSE="nls xinerama truetype kde gnome imlib"
DESCRIPTION="Fluxbox is an X11 window manager featuring tabs and an iconbar"
SRC_URI="mirror://sourceforge/fluxbox/${P}.tar.bz2"
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. They do, however,
# make the binary a fair bit bigger, so we don't want to turn them on unless
# the user actually wants them.
RDEPEND="virtual/x11
truetype? ( media-libs/freetype )
nls? ( sys-devel/gettext )
imlib? ( >=media-libs/imlib2-1.2.0 )
!<x11-themes/fluxbox-styles-fluxmod-20040809-r1"
DEPEND=">=sys-devel/autoconf-2.52
${RDEPEND}"
PROVIDE="virtual/blackbox"
SLOT="0"
LICENSE="MIT"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~sparc ~x86"
src_unpack() {
unpack ${A}
cd "${S}"
# We need to be able to include directories rather than just plain
# files in menu [include] items. This patch will allow us to do clever
# things with style ebuilds.
epatch "${FILESDIR}/0.9.13/${PN}-0.9.13-our-styles-go-over-here.patch"
# Add in the Gentoo -r number to fluxbox -version output.
if [[ "${PR}" == "r0" ]] ; then
suffix="gentoo"
else
suffix="gentoo-${PR}"
fi
sed -i \
-e "s~\(__fluxbox_version .@VERSION@\)~\1-${suffix}~" \
version.h.in || die "version sed failed"
# Turn on aa by default if possible. Fluxbox fonts are really frickin'
# broken, we'll do what we can to make it less painful by default.
use truetype 1>/dev/null && \
echo "session.screen0.antialias: true" >> data/init.in
# Fix broken styles
ebegin "Fixing backgrounds..."
for style in "${S}/data/styles/"* ; do
[[ -f "${style}" ]] || continue
sed -i -e 's,\([^f]\)bsetroot,\1fbsetroot,' "${style}" \
|| die "styles sed failed on ${style}"
done
eend 0
}
src_compile() {
export PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig:/usr/lib/pkgconfig
econf \
$(use_enable nls) \
$(use_enable xinerama) \
$(use_enable truetype xft) \
$(use_enable kde) \
$(use_enable gnome) \
$(use_enable imlib imlib2) \
--sysconfdir=/etc/X11/${PN} \
--with-style=/usr/share/fluxbox/styles/Emerge \
${myconf} || die "configure failed"
emake || die "make failed"
ebegin "Creating a menu file (may take a while)"
mkdir -p "${T}/home/.fluxbox" || die "mkdir home failed"
MENUFILENAME="${S}/data/menu" MENUTITLE="Fluxbox ${PV}" \
CHECKINIT="no. go away." HOME="${T}/home" \
"${S}/util/fluxbox-generate_menu" -is -ds \
|| die "menu generation failed"
eend $?
}
src_install() {
dodir /usr/share/fluxbox
make DESTDIR="${D}" install || die "make install failed"
dodoc README* AUTHORS TODO* ChangeLog NEWS
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
dodir /usr/share/fluxbox/menu.d
# Styles menu framework
dodir /usr/share/fluxbox/menu.d/styles
insinto /usr/share/fluxbox/menu.d/styles
doins "${FILESDIR}/0.9.10/styles-menu-fluxbox" || die
doins "${FILESDIR}/0.9.10/styles-menu-commonbox" || die
doins "${FILESDIR}/0.9.10/styles-menu-user" || die
}
pkg_postinst() {
einfo "As of fluxbox 0.9.10-r3, we are using an improved layout for"
einfo "styles to avoid problems with huge menus. Use the following"
einfo "in the menu for your menu styles section:"
einfo
einfo " [submenu] (Styles) {Select a Style}"
einfo " [include] (/usr/share/fluxbox/menu.d/styles/)"
einfo " [end]"
einfo
einfo "If you use fluxbox-generate_menu or the default global fluxbox"
einfo "menu file, this will already be present."
einfo
ewarn "Note that menumaker and similar utilities do *not* support"
ewarn "this out of the box."
einfo
einfo "As of fluxbox 0.9.14_pre1, Fluxbox uses XFT for font rendering. If"
einfo "you experience font problems, try tinkering with your theme files."
einfo "You can check the validity of a font name using:"
einfo
einfo " XFT_DEBUG=1 xfd -fa 'whatever-12:bold'"
einfo
einfo "The slow startup issues in previous versions should now be fixed;"
einfo "if you still encounter problems, please report bugs upstream."
epause
}
|