Install this version:
emerge -a =sci-geosciences/skytraq-datalogger-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-geosciences/skytraq-datalogger-9999
Or alternatively:
emerge --autounmask-write -a =sci-geosciences/skytraq-datalogger-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Tool to control Skytraq GPS data loggers."
HOMEPAGE="https://github.com/dtan4/skytraq-datalogger"
SRC_URI=""
EGIT_REPO_URI="https://github.com/dtan4/skytraq-datalogger.git"
EGIT_BRANCH="master"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="net-misc/curl"
RDEPEND="${DEPEND}"
BDEPEND=""
src_prepare() {
default
sed -i "s/^LDFLAGS = /LDFLAGS = ${LDFLAGS}\nLDLIBS = /g" Makefile
sed -i "s/\$(LDFLAGS)/\$(LDFLAGS) \$(LDLIBS)/g" Makefile
}
src_install() {
dobin ${PN}
dodoc README.md
}