mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
63 lines
1.1 KiB
Bash
63 lines
1.1 KiB
Bash
# Copyright 1999-2023 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-text/doxygen
|
|
media-gfx/graphviz
|
|
)
|
|
jansson? ( dev-libs/jansson:= )
|
|
ssl? ( net-libs/gnutls:= )
|
|
net-libs/libmicrohttpd:=
|
|
net-libs/orcania
|
|
net-libs/yder
|
|
sys-libs/zlib
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DBUILD_ULFIUS_DOCUMENTATION=$(usex doc)
|
|
-DWITH_CURL=$(usex curl)
|
|
-DWITH_GNUTLS=$(usex ssl)
|
|
-DWITH_JANSSON=$(usex jansson)
|
|
-DWITH_WEBSOCKET=$(usex websocket)
|
|
-DWITH_YDER=OFF
|
|
)
|
|
|
|
# bug 917149
|
|
sed -i -e "s/-Werror//g" CMakeLists.txt || die
|
|
|
|
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
|
|
}
|