blob: 7f49760a82dfeacd5feee383beff1f3fa9a83aa3 (
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
38
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/blackbox/blackbox-0.65.0-r3.ebuild,v 1.4 2003/12/26 15:20:52 weeve Exp $
IUSE="nls"
inherit commonbox
S=${WORKDIR}/${P}
DESCRIPTION="A small, fast, full-featured window manager for X - with mousewheel patch"
SRC_URI="mirror://sourceforge/blackboxwm/${P}.tar.gz"
HOMEPAGE="http://blackboxwm.sf.net/"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc"
MYCONF="--disable-nls"
mydoc="AUTHORS LICENSE README ChangeLog* TODO* data/README*"
src_unpack() {
unpack ${P}.tar.gz
epatch ${FILESDIR}/blackbox-0.65.0-mousewheel_focus-workspace.patch
epatch ${FILESDIR}/blackbox-gcc.patch
cd ${S}
epatch ${FILESDIR}/disable_rootcommand.patch
cd ${S}/data
mv README README.data
}
pkg_postinst() {
ewarn
ewarn "Please note that NLS support is now *disabled*, as it is"
ewarn "horribly broken."
ewarn "RootCommand is now DISABLED to close a large"
ewarn "security hole."
ewarn
}
|