blob: d0735cc967776556078b8510c785cf6fdf3539f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils systemd user
DESCRIPTION="An optimized HTTP server with support for HTTP/1.x and HTTP/2"
HOMEPAGE="https://h2o.examp1e.net"
SRC_URI="https://github.com/h2o/h2o/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="libressl +mruby"
RDEPEND="
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )"
DEPEND="${RDEPEND}
mruby? (
sys-devel/bison
|| (
dev-lang/ruby:2.4
dev-lang/ruby:2.3
dev-lang/ruby:2.2
dev-lang/ruby:2.1
)
)"
pkg_setup() {
enewgroup h2o
enewuser h2o -1 -1 -1 h2o
}
src_prepare() {
# Leave optimization level to user CFLAGS
sed -i 's/-O2 -g ${CC_WARNING_FLAGS} //g' ./CMakeLists.txt \
|| die "sed fix failed!"
default
}
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}"/etc/h2o
-DWITH_MRUBY="$(usex mruby)"
-DWITHOUT_LIBS=ON
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
newinitd "${FILESDIR}"/h2o.initd h2o
systemd_dounit "${FILESDIR}"/h2o.service
insinto /etc/h2o
doins "${FILESDIR}"/h2o.conf
keepdir /var/log/h2o
fperms 0700 /var/log/h2o
keepdir /var/www/localhost/htdocs
insinto /etc/logrotate.d
newins "${FILESDIR}"/h2o.logrotate h2o
}
|