guru/dev-libs/protothreads/protothreads-1.4.ebuild
Alessandro Barbieri c123aa26f5
dev-libs/protothreads: respect CC
Closes: https://bugs.gentoo.org/784938
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
2021-04-26 01:46:20 +02:00

55 lines
1.2 KiB
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit toolchain-funcs
DESCRIPTION="Lightweight, Stackless Threads in C"
HOMEPAGE="https://web.archive.org/web/20190923093100/http://dunkels.com/adam/pt/"
SRC_URI="
https://web.archive.org/web/20190518175329/http://dunkels.com/adam/download/pt-${PV}.tar.gz -> ${P}.tar
https://web.archive.org/web/20190518175329/http://dunkels.com/adam/download/graham-pt.h
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc examples"
BDEPEND="doc? ( app-doc/doxygen )"
PATCHES=( "${FILESDIR}/respect-cflags.patch" )
S="${WORKDIR}/pt-${PV}"
src_unpack() {
default
cp "${DISTDIR}/graham-pt.h" "${S}"
}
src_compile() {
export CC=$(tc-getCC)
default
use doc && cd doc && emake
}
src_install() {
insinto "/usr/include/${PN}"
doins *.h
if use doc ; then
dodoc doc/*.pdf
dodoc doc/*.txt
dodoc README
docinto html
dodoc -r doc/html/.
docompress -x "/usr/share/doc/${P}/html"
fi
if use examples ; then
insinto "/usr/share/${P}/examples"
doins *.c
exeinto "/usr/libexec/${P}"
doexe example-buffer
doexe example-codelock
doexe example-small
fi
}