mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
net-libs/usockets: move to net-libs per OpenBSD/FreeBSD www-apps/uwebsockets: move to www-apps per Open/FreeBSD Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
57 lines
1.3 KiB
Bash
57 lines
1.3 KiB
Bash
# Copyright 2019-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit multilib
|
|
|
|
DESCRIPTION="tiny eventing, networking & crypto for async applications"
|
|
HOMEPAGE="https://github.com/uNetworking/uSockets"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/uNetworking/uSockets.git"
|
|
else
|
|
SRC_URI="https://github.com/uNetworking/uSockets/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
S="${WORKDIR}/uSockets-${PV}"
|
|
fi
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
IUSE="libuv +ssl libressl static-libs"
|
|
|
|
DEPEND="ssl? (
|
|
libressl? ( >=dev-libs/libressl-3.0.0:=[static-libs?] )
|
|
!libressl? ( >=dev-libs/openssl-1.1.0:=[static-libs?] )
|
|
)
|
|
libuv? ( dev-libs/libuv[static-libs?] )
|
|
"
|
|
BDEPEND="${DEPEND}"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/usockets-Makefile.patch"
|
|
)
|
|
|
|
src_compile() {
|
|
# the Makefile uses environment variables
|
|
emake -j1 \
|
|
LIBusockets_VERSION=${PV} \
|
|
WITH_OPENSSL=$(usex ssl 1 0) \
|
|
WITH_LIBUV=$(usex libuv 1 0) \
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
emake -j1 \
|
|
libdir="/usr/$(get_libdir)" \
|
|
prefix="/usr" DESTDIR="${D}" \
|
|
LIBusockets_VERSION=${PV} \
|
|
install
|
|
einstalldocs
|
|
if ! use static-libs; then
|
|
rm "${D}/usr/$(get_libdir)/libusockets.a" || die
|
|
fi
|
|
}
|