diff options
author | Matt Keadle <mkeadle@gentoo.org> | 2002-12-07 21:37:08 +0000 |
---|---|---|
committer | Matt Keadle <mkeadle@gentoo.org> | 2002-12-07 21:37:08 +0000 |
commit | e4816aa9caf9927c24056652ec17568c0e5232a6 (patch) | |
tree | db61e19a0623b657826a08da1e18c204d1252be5 /x11-wm/fluxbox/fluxbox-0.1.13-r8.ebuild | |
parent | unstable pre-release version. (diff) | |
download | gentoo-2-e4816aa9caf9927c24056652ec17568c0e5232a6.tar.gz gentoo-2-e4816aa9caf9927c24056652ec17568c0e5232a6.tar.bz2 gentoo-2-e4816aa9caf9927c24056652ec17568c0e5232a6.zip |
More Xft2 fixes
Diffstat (limited to 'x11-wm/fluxbox/fluxbox-0.1.13-r8.ebuild')
-rw-r--r-- | x11-wm/fluxbox/fluxbox-0.1.13-r8.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/x11-wm/fluxbox/fluxbox-0.1.13-r8.ebuild b/x11-wm/fluxbox/fluxbox-0.1.13-r8.ebuild new file mode 100644 index 000000000000..9e188c28e54b --- /dev/null +++ b/x11-wm/fluxbox/fluxbox-0.1.13-r8.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.1.13-r8.ebuild,v 1.1 2002/12/07 21:37:08 mkeadle Exp $ + +IUSE="nls" + +inherit commonbox flag-o-matic eutils + +S=${WORKDIR}/${P} +DESCRIPTION="Window manager based on Blackbox and pwm -- has tabs." +SRC_URI="http://download.sourceforge.net/${PN}/${P}.tar.bz2" +HOMEPAGE="http://fluxbox.sf.net" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" + +mydoc="ChangeLog COPYING NEWS" +myconf="--enable-xinerama" +# Test for Xft2 +if pkg-config xft; then CXXFLAGS="${CXXFLAGS} -I/usr/include/freetype2"; fi + +filter-flags -fno-exceptions +export WANT_AUTOMAKE_1_6=1 +export WANT_AUTOCONF_2_5=1 + +src_unpack() { + + unpack ${A} + cd ${S} + # Enable keybindings for root and window menus + epatch ${FILESDIR}/${P}-menukey.patch + # Fix misshaped fonts on fluxbox first start + epatch ${FILESDIR}/${P}-aa2.patch + # Enable remember/startup patch + epatch ${FILESDIR}/${P}-remember.patch + # Fix for Openoffice crashing X server + epatch ${FILESDIR}/${P}-openoffice.patch + # Make sure NLS catalogs get installed + epatch ${FILESDIR}/${P}-nls.patch + + # NLS is still names after blackbox. + # This will be fixed in later releases. + ssed -i "s:blackbox.cat:fluxbox.cat:" \ + ${S}/src/main.cc +} + +src_compile() { + + commonbox_src_compile + + cd data + make \ + pkgdatadir=/usr/share/commonbox init +} + + +src_install() { + + commonbox_src_install + cd data + insinto /usr/share/commonbox + doins init + insinto /usr/share/commonbox/fluxbox + doins keys + rm -f ${D}/usr/bin/fluxbox-generate_menu +} |