Install this version:
emerge -a =dev-util/waitgdb-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-util/waitgdb-9999
Or alternatively:
emerge --autounmask-write -a =dev-util/waitgdb-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 7 | 0 |
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3 multilib-minimal
DESCRIPTION="Stop the program on crash to allow attaching a debugger (like gdb)"
HOMEPAGE="https://github.com/l29ah/waitgdb"
EGIT_REPO_URI="https://github.com/l29ah/waitgdb"
LICENSE="WTFPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_prepare() {
default
multilib_copy_sources
}
multilib_src_compile() {
emake waitgdb.so
}
multilib_src_install() {
emake libdir="${D}/usr/$(get_libdir)" install
}