summaryrefslogtreecommitdiff
blob: 8072e643f19eace1f33af3f35c22f39d0aa2c461 (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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxspace/fluxspace-0.0.3-r1.ebuild,v 1.2 2003/06/12 19:04:18 msterret Exp $

IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="Enhancements for workspace management within Fluxbox."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://fluxspace.sourceforge.net/"

DEPEND="dev-lang/swig"
RDEPEND="x11-wm/fluxbox
		>=dev-lang/python-2.1
		dev-python/PyXML
		media-libs/imlib2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"

myconf="--prefix=/usr"

src_compile() {
	export LDFLAGS="-lstdc++"
	econf ${myconf} || die "Configure failed"
	emake || die "Compile failed"
}

src_install () {
	einstall || die "Install failed"
	dosym /usr/lib/python2.2/site-packages/fluxspace.py \
			/usr/lib/python2.2/site-packages/fluxspace/__init__.py
	dosym /usr/lib/libfluxspace.so \
			/usr/lib/python2.2/site-packages/_fluxspace.so
	dodoc README COPYING AUTHORS ChangeLog NEWS README TODO
}

pkg_postinst() {
	# Fix typo in the config file
	sed -e "s/no\"\\\/no\"\//g" /usr/share/fluxspace/examples/fluxspace.xml > /tmp/fluxspace.xml
	cp -f /tmp/fluxspace.xml /usr/share/fluxspace/examples/fluxspace.xml
	rm -f /tmp/fluxspace.xml

	einfo " NOTES:"
	einfo " "
	einfo " 1. If you want to use the optional features for idesk and rox,"
	einfo "    you must emerge them separately. (e.g., 'emerge idesk')"
	einfo " "
	einfo " 2. Copy /usr/share/fluxspace/examples/fluxspace.xml to"
	einfo "    ~/.fluxbox and edit the file.  Change the settings from"
	einfo "    \"no\" to \"yes\" depending on what features you want enabled."
	einfo " "
	einfo " 3. Edit ~/.fluxbox/init to 'turn on' fluxspace.  Change line:"
    einfo "        session.screen0.rootCommand:"
	einfo "    to..."
	einfo "        session.screen0.rootCommand: fluxspace"
	einfo " "
	einfo " 4. Full documentation is available online at:"
	einfo "    http://sfads.osdn.com/7.html?topic=fluxspace,python-foundry,56"
	einfo " "
}