2014-12-08 19:09:13 +03:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2012-06-05 10:10:30 +04:00
|
|
|
|
|
|
|
EAPI=4
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
inherit autotools eutils
|
|
|
|
|
|
|
|
DESCRIPTION="utility that allows you to specify window properties in blackbox"
|
2016-07-27 12:26:17 +03:00
|
|
|
HOMEPAGE="https://sourceforge.net/projects/bbtools"
|
2012-06-05 10:10:30 +04:00
|
|
|
SRC_URI="mirror://sourceforge/bbtools/${P}.tar.gz"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ppc sparc x86 ~x86-fbsd"
|
|
|
|
IUSE="debug"
|
|
|
|
|
2012-11-25 23:47:45 +04:00
|
|
|
DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO data/README.bbappconf )
|
|
|
|
|
2014-12-08 19:09:13 +03:00
|
|
|
RDEPEND="x11-libs/libX11"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
|
2012-11-25 23:47:45 +04:00
|
|
|
src_prepare() {
|
2011-11-09 11:33:19 +04:00
|
|
|
epatch "${FILESDIR}"/${P}-fix-sigsegv.diff \
|
|
|
|
"${FILESDIR}"/${P}-asneeded.patch \
|
|
|
|
"${FILESDIR}"/${P}-docs.patch
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
2012-06-05 10:10:30 +04:00
|
|
|
src_configure() {
|
2011-11-09 11:33:19 +04:00
|
|
|
econf $(use_enable debug)
|
|
|
|
}
|