2022-08-12 19:56:52 +03:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2018-10-11 08:48:36 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2021-03-16 14:58:54 +03:00
|
|
|
EAPI=7
|
2018-10-11 08:48:36 +03:00
|
|
|
|
2021-05-09 14:00:02 +03:00
|
|
|
DESCRIPTION="Lightweight event loop library for Linux epoll() family APIs"
|
2018-10-11 08:48:36 +03:00
|
|
|
HOMEPAGE="https://github.com/troglobit/libuev"
|
|
|
|
SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.xz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
2022-08-12 19:56:52 +03:00
|
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
2018-10-11 08:48:36 +03:00
|
|
|
IUSE="static-libs"
|
|
|
|
|
2020-02-23 01:15:17 +03:00
|
|
|
src_configure() {
|
2018-10-11 08:48:36 +03:00
|
|
|
econf --enable-static=$(usex static-libs)
|
|
|
|
}
|
|
|
|
|
2020-02-23 01:15:17 +03:00
|
|
|
src_install() {
|
2018-10-11 08:48:36 +03:00
|
|
|
default
|
2021-12-26 11:56:45 +03:00
|
|
|
|
|
|
|
find "${ED}" -name '*.la' -delete || die
|
|
|
|
rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
|
2018-10-11 08:48:36 +03:00
|
|
|
}
|