Install this version:
emerge -a =net-libs/libgcm-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-libs/libgcm-9999
Or alternatively:
emerge --autounmask-write -a =net-libs/libgcm-9999
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Google Cloud Messaging C library"
HOMEPAGE="https://github.com/doctaweeks/libgcm"
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/doctaweeks/${PN}"
else
SRC_URI="https://github.com/doctaweeks/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 x86"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="static-libs"
DEPEND="dev-libs/json-c
net-misc/curl"
RDEPEND="${DEPEND}"
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable static-libs static)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
if ! use static-libs ; then
find "${ED}" -name "*.la" -delete || die
fi
}
Manage flags for this package:
euse -i <flag> -p net-libs/libgcm |
euse -E <flag> -p net-libs/libgcm |
euse -D <flag> -p net-libs/libgcm
dev-libs/json-c net-misc/curl
dev-libs/json-c net-misc/curl