mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-21 13:03:31 -04:00
net-libs/ulfius: add 2.7.13
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
This commit is contained in:
56
net-libs/ulfius/ulfius-2.7.13.ebuild
Normal file
56
net-libs/ulfius/ulfius-2.7.13.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="HTTP Framework for REST Applications in C"
|
||||
HOMEPAGE="https://github.com/babelouest/ulfius/"
|
||||
SRC_URI="https://github.com/babelouest/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="curl doc jansson ssl websocket"
|
||||
RESTRICT="test"
|
||||
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
"
|
||||
DEPEND="
|
||||
curl? ( net-misc/curl )
|
||||
doc? ( app-doc/doxygen )
|
||||
jansson? ( dev-libs/jansson:= )
|
||||
ssl? ( net-libs/gnutls:= )
|
||||
net-libs/libmicrohttpd:=
|
||||
net-libs/orcania
|
||||
sys-libs/zlib
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_ULFIUS_DOCUMENTATION=$(usex doc)
|
||||
-DDOWNLOAD_DEPENDENCIES=OFF
|
||||
-DWITH_CURL=$(usex curl)
|
||||
-DWITH_GNUTLS=$(usex ssl)
|
||||
-DWITH_JANSSON=$(usex jansson)
|
||||
-DWITH_WEBSOCKET=$(usex websocket)
|
||||
-DWITH_YDER=OFF
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake_src_compile
|
||||
use doc && cmake_build doc
|
||||
}
|
||||
|
||||
src_install() {
|
||||
use doc && local HTML_DOCS=( doc/html/* )
|
||||
cmake_src_install
|
||||
}
|
||||
Reference in New Issue
Block a user