blob: c2052d1e15e2e817579dc000e83e692d2616825f (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
SSL_DEPS_SKIP=1
USE_RUBY="ruby31 ruby32 ruby33"
inherit cmake git-r3 ruby-single ssl-cert systemd toolchain-funcs
DESCRIPTION="H2O - the optimized HTTP/1, HTTP/2 server"
HOMEPAGE="https://h2o.examp1e.net/"
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE="libh2o +mruby"
RDEPEND="acct-group/h2o
acct-user/h2o
dev-lang/perl
dev-libs/openssl:0=
!sci-libs/libh2o
sys-libs/libcap
sys-libs/zlib
libh2o? (
app-arch/brotli
dev-libs/libuv
)"
DEPEND="${RDEPEND}
mruby? (
${RUBY_DEPS}
|| (
dev-libs/onigmo
dev-libs/oniguruma
)
)"
BDEPEND="virtual/pkgconfig
mruby? ( app-alternatives/yacc )"
PATCHES=( "${FILESDIR}"/${PN}-2.3-mruby.patch )
src_prepare() {
cmake_src_prepare
local ruby="ruby"
if use mruby; then
for ruby in ${RUBY_TARGETS_PREFERENCE}; do
if has_version dev-lang/ruby:${ruby:4:1}.${ruby:5}; then
break
fi
ruby=
done
[[ -z ${ruby} ]] && die "no suitable ruby version found"
fi
sed -i \
-e "/INSTALL/s:\(/doc/${PN}\) :\1/html :" \
-e "/INSTALL/s:\(/doc\)/${PN}:\1/${PF}:" \
-e "s: ruby: ${ruby}:" \
CMakeLists.txt
sed -i "s:pkg-config:$(tc-getPKG_CONFIG):g" deps/mruby/lib/mruby/gem.rb
tc-export CC
export LD="$(tc-getCC)"
}
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}"/etc/${PN}
-DWITH_CCACHE=OFF
-DWITH_MRUBY=$(usex mruby)
-DWITHOUT_LIBS=$(usex !libh2o)
-DBUILD_SHARED_LIBS=$(usex libh2o)
)
cmake_src_configure
}
src_install() {
cmake_src_install
keepdir /var/www/localhost/htdocs
insinto /etc/${PN}
doins "${FILESDIR}"/${PN}.conf
newinitd "${FILESDIR}"/${PN}.initd ${PN}
systemd_dounit "${FILESDIR}"/${PN}.service
insinto /etc/logrotate.d
newins "${FILESDIR}"/${PN}.logrotate ${PN}
keepdir /var/log/${PN}
fowners ${PN}:${PN} /var/log/${PN}
fperms 0750 /var/log/${PN}
}
pkg_postinst() {
if [[ ! -f "${EROOT}"/etc/ssl/${PN}/server.key ]]; then
install_cert /etc/ssl/${PN}/server
chown ${PN}:${PN} "${EROOT}"/etc/ssl/${PN}/server.*
fi
}
|