blob: e2052afacdc95350c48cefe3100d2e527b233984 (
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
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Drop-in replacement for cdialog using GTK"
HOMEPAGE="http://xdialog.free.fr/"
SRC_URI="http://${PN}.free.fr/Xdialog-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ppc x86"
IUSE="doc examples nls"
RDEPEND="
dev-libs/glib:2
>=x11-libs/gtk+-2.2:2
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
nls? ( sys-devel/gettext )
"
S="${WORKDIR}/${P/x/X}"
DOCS=( AUTHORS BUGS ChangeLog README )
PATCHES=( "${FILESDIR}"/${P}-{no-strip,install}.patch )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_enable nls) \
--with-gtk2
}
src_install() {
default
rm -r "${D}"/usr/share/doc || die
use doc && local HTML_DOCS=( doc/. )
einstalldocs
if use examples; then
insinto "/usr/share/doc/${PF}/examples"
doins samples/*
fi
}
|