Install this version:
emerge -a =app-benchmarks/load-time-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-benchmarks/load-time-9999
Or alternatively:
emerge --autounmask-write -a =app-benchmarks/load-time-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Program that mesures the time it takes to load a shared library"
HOMEPAGE="https://github.com/serge-sans-paille/load-time"
EGIT_REPO_URI="https://github.com/serge-sans-paille/${PN}"
LICENSE="BSD-3-Clause"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND="sys-devel/gcc"
DOCS=( README.rst LICENSE )
src_prepare() {
default
}
src_compile() {
emake
}
src_install() {
exeinto "/usr/bin"
doexe ${PN}
dodoc ${DOCS}
}
sys-devel/gcc