summaryrefslogtreecommitdiff
blob: a68e9e456988294bf287b9420704ba0fe04302cb (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-wm/xfce/xfce-3.8.16.ebuild,v 1.8 2002/06/19 19:36:49 seemant Exp $
 
S=${WORKDIR}/${P}
DESCRIPTION="XFce is a lightweight desktop environment for various UNIX systems."
SRC_URI="mirror://sourceforge/xfce/${P}.tar.gz"
HOMEPAGE="http://www.xfce.org/"

DEPEND="virtual/x11
	=x11-libs/gtk+-1.2*
	gnome? ( dev-libs/libxml2 )
	gtk? ( >=media-libs/gdk-pixbuf-0.11.0-r1 >=media-libs/imlib-1.9.10-r1 )
	arts? ( kde-base/arts )"
	
RDEPEND="nls? ( sys-devel/gettext )"

src_compile() {
	local myconf

	use gtk && myconf="--enable-imlib=no --enable-gdk-pixbuf=/usr"

#	if [ "`use fooz`" ]
	if [ "`use gnome`" ]
	then
		myconf="${myconf} --enable-gdm"
		myconf="${myconf} --enable-libxml2"
	fi
	
	use nls || myconf="${myconf} --disable-nls"
	use arts && myconf="${myconf} --enable-arts"

	./configure --host=${CHOST} \
		--prefix=/usr \
	 	--mandir=/usr/share/man \
		--with-data-dir=/usr/share/xfce \
		--with-conf-dir=/etc/xfce \
		--enable-xft \
		--with-locale-dir=/usr/share/locale \
		${myconf} || die

	cd docs
	cp Makefile Makefile.orig
	sed "s:/usr/share/xfce:/usr/share/doc/${PF}:" Makefile.orig > Makefile
	cd ..

	emake || die
}

src_install () {
	make DESTDIR=${D} install || die
	dodoc ChangeLog* AUTHORS LICENSE README* TODO*
	dodir /etc/skel/.xfce

	exeinto /etc/X11/Sessions
	doexe $FILESDIR/xfce
}