blob: a299c59c8b199b0c0a40355efc77142746b00190 [file] [log] [blame]
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_COMMIT="726ba6fea1b749db1c747138b2a5e221754b9aa3"
CROS_WORKON_TREE="5de88fb3adfbecfc2984a310f1eb8ce4a544191a"
CROS_WORKON_PROJECT="chromiumos/third_party/libqmi"
inherit autotools cros-workon
DESCRIPTION="QMI modem protocol helper library"
HOMEPAGE="http://cgit.freedesktop.org/libqmi/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="*"
IUSE="-asan -clang doc static-libs"
REQUIRED_USE="asan? ( clang )"
RDEPEND=">=dev-libs/glib-2.32"
DEPEND="${RDEPEND}
doc? ( dev-util/gtk-doc )
virtual/pkgconfig"
src_prepare() {
gtkdocize
eautoreconf
}
src_configure() {
clang-setup-env
# Disable the unused function check as libqmi has auto-generated
# functions that may not be used.
append-flags -Xclang-only=-Wno-unused-function
econf \
$(use_enable static{-libs,}) \
$(use_enable {,gtk-}doc)
}
src_test() {
# TODO(benchan): Run unit tests for arm via qemu-arm.
[[ "${ARCH}" != "arm" ]] && emake check
}
src_install() {
default
use static-libs || rm -f "${ED}"/usr/$(get_libdir)/libqmi-glib.la
}