blob: 90383ff6bc5719d1a529b8753a04fbdb4e8c20f0 (
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
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxklavier/libxklavier-4.0.ebuild,v 1.14 2010/02/15 04:30:42 abcd Exp $
inherit autotools eutils
DESCRIPTION="High level XKB library"
HOMEPAGE="http://www.freedesktop.org/Software/LibXklavier"
SRC_URI="mirror://sourceforge/gswitchit/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="doc"
RDEPEND="x11-misc/xkeyboard-config
x11-libs/libX11
>=x11-libs/libXi-1.1.3
x11-apps/xkbcomp
x11-libs/libxkbfile
>=dev-libs/glib-2.16
>=dev-libs/libxml2-2.0
app-text/iso-codes"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext
doc? ( >=dev-util/gtk-doc-1.4 )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-tests.patch
rm -v m4/{libtool,lt*}.m4 || die "libtool compability failed"
eautoreconf
}
src_compile() {
local xkbbase
# see bug #113108
if has_version x11-apps/xkbcomp; then
xkbbase=/usr/share/X11/xkb
else
xkbbase=/usr/$(get_libdir)/X11/xkb
fi
econf \
--disable-static \
--with-xkb-base=${xkbbase} \
--with-xkb-bin-base=/usr/bin \
$(use_enable doc gtk-doc)
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc AUTHORS CREDITS ChangeLog NEWS README || die "dodoc failed"
}
pkg_preinst() {
preserve_old_lib /usr/$(get_libdir)/libxklavier.so.12
}
pkg_postinst() {
preserve_old_lib_notify /usr/$(get_libdir)/libxklavier.so.12
}
|