48 lines
1.1 KiB
Bash
48 lines
1.1 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit multilib
|
|
if [[ ${PV} == "9999" ]] ; then
|
|
inherit git-r3 autotools
|
|
EGIT_REPO_URI="https://gitlab.freedesktop.org/mobile-broadband/libqmi.git"
|
|
else
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
|
|
SRC_URI="https://www.freedesktop.org/software/libqmi/${P}.tar.xz"
|
|
fi
|
|
|
|
DESCRIPTION="Qualcomm MSM (Mobile Station Modem) Interface (QMI) modem protocol library"
|
|
HOMEPAGE="https://www.freedesktop.org/wiki/Software/libqmi/ https://gitlab.freedesktop.org/mobile-broadband/libqmi"
|
|
|
|
LICENSE="LGPL-2"
|
|
SLOT="0/5.7" # soname of libqmi-glib.so
|
|
IUSE="doc +mbim"
|
|
|
|
RDEPEND=">=dev-libs/glib-2.48
|
|
dev-libs/libgudev
|
|
mbim? ( >=net-libs/libmbim-1.18.0 )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
doc? ( dev-util/gtk-doc )"
|
|
[[ ${PV} == "9999" ]] && BDEPEND+=" dev-util/gtk-doc" #469214
|
|
|
|
src_prepare() {
|
|
default
|
|
[[ ${PV} == "9999" ]] && eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-Werror \
|
|
--disable-static \
|
|
$(use_enable mbim mbim-qmux) \
|
|
$(use_enable {,gtk-}doc)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|