summaryrefslogtreecommitdiff
blob: a8ed7c0eddb5b9feee090e342717e301e0166969 (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Prakash Shetty <crux@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.4.0.ebuild,v 1.4 2001/08/31 03:23:39 pm Exp $


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/"

DEPEND="virtual/glibc
	>=sys-libs/readline-4.1
	>=x11-libs/gtk+-1.2.10
	>=dev-libs/libstroke-0.4
	gnome? ( >=gnome-base/gnome-libs-1.2.13 )"

src_compile() {
    local myconf
    if [ -n "$( use gnome )" ]
    then
	myconf="--with-gnome"
    else
	myconf="--without-gnome"
    fi
    try ./configure --prefix=/usr/X11R6 --libexecdir=/usr/X11R6/lib \
	--mandir=/usr/share/man --infodir=/usr/share/info --host=${CHOST} ${myconf}
    try make
}

src_install () {

    try make DESTDIR=${D} install
    exeinto /usr/X11R6/bin/wm
    doexe ${FILESDIR}/fvwm

}