blob: 02a258f0146fc7e36d1c1ac16006d0d63801f90f (
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
39
40
41
42
43
44
45
46
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
HOMEPAGE="https://www.yoctoproject.org/tools-resources/projects/matchbox"
SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
IUSE="debug doc"
BDEPEND="doc? ( app-doc/doxygen )"
DEPEND="x11-libs/libXtst"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-ac.patch" ) # Allow configure to use libtool-2
src_prepare() {
default
# Fix underlinking bug #367595
sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
tests/Makefile.am || die 'Cannot sed Makefile.am'
sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
eautoreconf
}
src_configure() {
local myeconfargs=(
# --with/without-x is ignored by configure script and X is used.
--with-x
$(use_enable debug)
$(use_enable doc doxygen-docs)
)
econf "${myeconfargs[@]}"
}
src_install() {
use doc && local HTML_DOCS=( doc/html/. )
default
}
|