diff options
Diffstat (limited to 'x11-wm/fvwm/fvwm-2.4.8.ebuild')
-rw-r--r-- | x11-wm/fvwm/fvwm-2.4.8.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/x11-wm/fvwm/fvwm-2.4.8.ebuild b/x11-wm/fvwm/fvwm-2.4.8.ebuild new file mode 100644 index 000000000000..d105812eba17 --- /dev/null +++ b/x11-wm/fvwm/fvwm-2.4.8.ebuild @@ -0,0 +1,52 @@ +# 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/fvwm/fvwm-2.4.8.ebuild,v 1.1 2002/08/12 06:47:37 seemant 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 + mirror://gentoo/${P}-gentoo-diff.bz2" +HOMEPAGE="http://www.fvwm.org/" + +SLOT="0" +KEYWORDS="x86" +LICENSE="GPL-2 FVWM" + +RDEPEND=">=dev-libs/libstroke-0.4 + gtk? ( =x11-libs/gtk+-1.2* ) + gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 ) + ncurses? ( >=sys-libs/readline-4.1 )" +DEPEND="${RDEPEND} sys-devel/automake" + +src_unpack() { + + unpack ${A} + patch -p0 < ${P}-gentoo-diff || die +} + +src_compile() { + local myconf + + use gnome \ + && myconf="--with-gnome" \ + || myconf="--without-gnome" \ + + automake + + econf \ + --libexecdir=/usr/lib \ + ${myconf} || die + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + + echo "#!/bin/bash" > fvwm2 + echo "/usr/bin/fvwm2" >> fvwm2 + + exeinto /etc/X11/Sessions + doexe fvwm2 +} |