blob: f23b8b85fd0ecea44a5c2f2b74e60a511fdd13c1 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxklavier/libxklavier-5.2.ebuild,v 1.2 2012/01/23 18:58:22 ssuominen Exp $
EAPI=4
inherit autotools eutils gnome.org libtool
DESCRIPTION="A library for the X Keyboard Extension (high-level API)"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/LibXklavier"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="doc +introspection"
RDEPEND="app-text/iso-codes
>=dev-libs/glib-2.16
dev-libs/libxml2
x11-apps/xkbcomp
x11-libs/libX11
>=x11-libs/libXi-1.1.3
x11-libs/libxkbfile
x11-misc/xkeyboard-config
introspection? ( >=dev-libs/gobject-introspection-1.30 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext
doc? ( >=dev-util/gtk-doc-1.4 )"
DOCS="AUTHORS ChangeLog CREDITS NEWS README"
src_prepare() {
if use introspection; then
epatch "${FILESDIR}"/${P}-include-top_srcdir.patch
eautoreconf
else
elibtoolize
fi
}
src_configure() {
econf \
--disable-static \
$(use_enable introspection) \
$(use_enable doc gtk-doc) \
--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
--with-xkb-base="${EPREFIX}"/usr/share/X11/xkb \
--with-xkb-bin-base="${EPREFIX}"/usr/bin
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}
|