diff options
Diffstat (limited to 'x11-wm/fluxbox/fluxbox-0.9.6_pre1.ebuild')
-rw-r--r-- | x11-wm/fluxbox/fluxbox-0.9.6_pre1.ebuild | 94 |
1 files changed, 0 insertions, 94 deletions
diff --git a/x11-wm/fluxbox/fluxbox-0.9.6_pre1.ebuild b/x11-wm/fluxbox/fluxbox-0.9.6_pre1.ebuild deleted file mode 100644 index 253161937d74..000000000000 --- a/x11-wm/fluxbox/fluxbox-0.9.6_pre1.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.9.6_pre1.ebuild,v 1.3 2003/09/06 11:03:41 seemant Exp $ - -IUSE="gnome kde nls xinerama truetype" - -#inherit flag-o-matic eutils - -MY_P="${PN}-0.9.6pre1" -S=${WORKDIR}/${MY_P} -DESCRIPTION="Fluxbox is yet another windowmanager for X. It's based on the Blackbox 0.61.1 code. Fluxbox looks like blackbox and handles styles, colors, window placement and similar thing exactly like blackbox (100% theme/style compability). So what's the difference between fluxbox and blackbox then? The answer is: LOTS! *This is a development release and should not be considered stable.* *This release includes the Blueflux style.*" -SRC_URI="http://fluxbox.org/download/${MY_P}.tar.gz - http://koti.mbnet.fi/bionik/blueflux/blueflux_0.1.0.tar.gz" -HOMEPAGE="http://www.fluxbox.org/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~ppc" - -DEPEND="virtual/x11 - >=sys-devel/autoconf-2.52" -RDEPEND="x11-misc/commonbox-utils - x11-themes/commonbox-styles" -PROVIDE="virtual/blackbox" - -mydoc="ChangeLog COPYING NEWS" - -src_unpack() { - - unpack ${A} - cd ${S} - - use nls && ( \ - einfo "Redirecting NLS" - for i in `find ${S} -name 'Makefile.am'` - do - sed -i -e 's:$(pkgdatadir)/nls:/usr/share/locale:' ${i} - done - ) - - sed -i -e 's:bsetroot.1::' ${S}/doc/Makefile.am - sed -i -e 's:bsetroot::' ${S}/util/Makefile.* -} - - -src_compile() { - - econf \ - `use_enable nls` \ - `use_enable kde` \ - `use_enable gnome` \ - `use_enable xinerama` \ - `use_enable truetype xft` \ - --sysconfdir=/etc/X11/${PN} \ - --datadir=/usr/share/commonbox \ - ${myconf} || die - - sed -i -e 's:\$(datadir)/fluxbox:/usr/share/commonbox:' ${S}/Makefile - sed -i -e 's:\$(datadir)/fluxbox:/usr/share/commonbox:' ${S}/data/Makefile - - emake \ - pkgdatadir=/usr/share/commonbox || die - - cd data make \ - pkgdatadir=/usr/share/commonbox init -} - -src_install() { - - dodir /usr/share/commonbox/${PN} - dodir /usr/share/commonbox/styles - make DESTDIR=${D} install || die - dodoc README* AUTHORS TODO* ${mydoc} - rmdir ${D}/usr/share/${PN} - dodir /etc/X11/Sessions - echo "/usr/bin/${PN}" > ${D}/etc/X11/Sessions/${PN} - fperms a+x /etc/X11/Sessions/${PN} - - cd data - insinto /usr/share/commonbox - doins init keys - insinto /usr/share/commonbox/styles - doins ${D}/usr/share/commonbox/fluxbox/styles/Meta - rm -rf ${D}/usr/share/commonbox/fluxbox - - # blueflux style - insinto /usr/share/commonbox/pixmaps - doins ${WORKDIR}/pixmaps/* - # fix some paths and change b->B at the same time - sed -e 's:\.fluxbox:/usr/share/commonbox:' ${WORKDIR}/styles/blueflux \ - > ${WORKDIR}/styles/Blueflux - insinto /usr/share/commonbox/styles - doins ${WORKDIR}/styles/Blueflux -} |