Install this version:
emerge -a =net-libs/libtlsrpt-0.5.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-libs/libtlsrpt-0.5.1
Or alternatively:
emerge --autounmask-write -a =net-libs/libtlsrpt-0.5.1
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.5.1 | 8 | ~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 | 0 |
# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
if [[ ${PV} == 9999 ]]; then
inherit git-r3
MY_P="${PN}${PV/_/-}"
EGIT_REPO_URI="https://github.com/sys4/${PN}.git"
else
MY_P="${PN}-${PV/_/-}"
SRC_URI="https://github.com/sys4/${PN}/releases/download/v${PV/_/-}/${MY_P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
S="${WORKDIR}/${MY_P}"
fi
DESCRIPTION="library to implement TLSRPT"
HOMEPAGE="https://github.com/sys4/libtlsrpt"
LICENSE="LGPL-3+"
SLOT="0"
RDEPEND="${DEPEND}"
src_prepare() {
if [[ ${PV} == 9999 ]]; then
eautoreconf
fi
default
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | libtlsrpt-0.5.1.tar.gz | 363940 bytes | https://github.com/sys4/libtlsrpt/releases/download/v0.5.1/libtlsrpt-0.5.1.tar.gz |