diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-12-27 08:41:22 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-12-27 08:41:22 +0000 |
commit | 0b1ae29a02e5873fc44100a0ab368789d3603ccf (patch) | |
tree | 7535c5e42549187a25f88ef3c0eb342a8c8fde2d /x11-wm | |
parent | New isapnptools (diff) | |
download | gentoo-2-0b1ae29a02e5873fc44100a0ab368789d3603ccf.tar.gz gentoo-2-0b1ae29a02e5873fc44100a0ab368789d3603ccf.tar.bz2 gentoo-2-0b1ae29a02e5873fc44100a0ab368789d3603ccf.zip |
Fluxbox is a spiffed up version of Blackbox
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/fluxbox/fluxbox-0.1.5.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-wm/fluxbox/fluxbox-0.1.5.ebuild b/x11-wm/fluxbox/fluxbox-0.1.5.ebuild new file mode 100644 index 000000000000..086acbcce548 --- /dev/null +++ b/x11-wm/fluxbox/fluxbox-0.1.5.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Karl Trygve Kalleberg +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.1.5.ebuild,v 1.1 2001/12/27 08:41:22 karltk Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Window manager based on BlackBox" +SRC_URI="http://prdownloads.sourceforge.net/fluxbox/fluxbox-0.1.5.tar.gz" +HOMEPAGE="http://fluxbox.sf.net" + +DEPEND="virtual/x11 + virtual/glibc + kde? ( >=kde-base/kdebase-2.1 ) + nls? ( >=sys-devel/gettext-0.10.38 ) " + +RDEPEND="$DEPEND" + +src_compile() { + local myconf + use nls && myconf="$myconf --enable-nls" || myconf="$myconf --disable-nls" + use kde && myconf="$myconf --enable-kde" || myconf="$myconf --disable-kde" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $myconf || die "./configure failed" + emake || die +} + +src_install () { + make \ + prefix=${D}/usr \ + sysconfdir=${D}/etc/X11/fluxbox \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + + dodoc ChangeLog AUTHORS COPYING INSTALL README TODO NEWS + docinto data + dodoc data/README* +} |