blob: 26a9156725b51a72d7cf948e9503e9772d35a971 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit ltprune
DESCRIPTION="GObject-based XIM protocol library"
HOMEPAGE="https://tagoh.bitbucket.io/libgxim"
SRC_URI="https://bitbucket.org/tagoh/${PN}/downloads/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
RDEPEND="dev-libs/dbus-glib
dev-libs/glib:2
sys-apps/dbus
virtual/libintl
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
dev-libs/check
dev-lang/ruby
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig"
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
prune_libtool_files
}
|