96 lines
2.5 KiB
Bash
96 lines
2.5 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
GCONF_DEBUG="no"
|
|
GNOME2_LA_PUNT="yes"
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
|
|
|
|
inherit autotools eutils gnome2 multilib python-r1 virtualx
|
|
|
|
DESCRIPTION="A GObject plugins library"
|
|
HOMEPAGE="https://developer.gnome.org/libpeas/stable/"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
|
|
IUSE="+gtk glade jit lua +python"
|
|
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ?? ( $(python_gen_useflags 'python3*') ) )"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.38:2
|
|
>=dev-libs/gobject-introspection-1.39:=
|
|
glade? ( >=dev-util/glade-3.9.1:3.10 )
|
|
gtk? ( >=x11-libs/gtk+-3:3[introspection] )
|
|
lua? (
|
|
>=dev-lua/lgi-0.9.0
|
|
jit? ( >=dev-lang/luajit-2:2 )
|
|
!jit? ( =dev-lang/lua-5.1*:0 ) )
|
|
python? (
|
|
${PYTHON_DEPS}
|
|
>=dev-python/pygobject-3.2:3[${PYTHON_USEDEP}] )
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
>=dev-util/gtk-doc-am-1.11
|
|
>=dev-util/intltool-0.40
|
|
virtual/pkgconfig
|
|
|
|
dev-libs/gobject-introspection-common
|
|
gnome-base/gnome-common
|
|
"
|
|
# eautoreconf needs gobject-introspection-common, gnome-common
|
|
|
|
src_prepare() {
|
|
# Gentoo uses unversioned lua - lua.pc instad of lua5.1.pc, /usr/bin/lua instead of /usr/bin/lua5.1
|
|
epatch "${FILESDIR}"/${PN}-1.14.0-lua.pc.patch
|
|
eautoreconf
|
|
gnome2_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
# Wtf, --disable-gcov, --enable-gcov=no, --enable-gcov, all enable gcov
|
|
# What do we do about gdb, valgrind, gcov, etc?
|
|
local myconf=(
|
|
$(use_enable glade glade-catalog)
|
|
$(use_enable gtk)
|
|
--disable-static
|
|
|
|
# possibly overriden below
|
|
--disable-python{2,3}
|
|
--disable-lua5.1
|
|
--disable-luajit
|
|
)
|
|
|
|
if use lua ; then
|
|
if use jit ; then
|
|
myconf+=( --enable-lua5.1 --enable-luajit )
|
|
else
|
|
myconf+=( --enable-lua5.1 )
|
|
fi
|
|
fi
|
|
|
|
python_configure() {
|
|
local v
|
|
python_is_python3 && v=3 || v=2
|
|
myconf+=(
|
|
"--enable-python${v}"
|
|
# it is just 'PYTHON' for py3 in the build system
|
|
"PYTHON${v#3}=${PYTHON}"
|
|
"PYTHON${v}_CONFIG=$(python_get_PYTHON_CONFIG)"
|
|
)
|
|
}
|
|
use python && python_foreach_impl python_configure
|
|
|
|
gnome2_src_configure "${myconf[@]}"
|
|
}
|
|
|
|
src_test() {
|
|
# FIXME: Tests fail because of some bug involving Xvfb and Gtk.IconTheme
|
|
# DO NOT REPORT UPSTREAM, this is not a libpeas bug.
|
|
# To reproduce:
|
|
# >>> from gi.repository import Gtk
|
|
# >>> Gtk.IconTheme.get_default().has_icon("gtk-about")
|
|
# This should return True, it returns False for Xvfb
|
|
Xemake check
|
|
}
|