diff options
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/h2o/h2o-2.2.6-r1.ebuild | 105 | ||||
-rw-r--r-- | www-servers/h2o/h2o-9999.ebuild | 37 |
2 files changed, 124 insertions, 18 deletions
diff --git a/www-servers/h2o/h2o-2.2.6-r1.ebuild b/www-servers/h2o/h2o-2.2.6-r1.ebuild new file mode 100644 index 000000000000..3c0c14adba6b --- /dev/null +++ b/www-servers/h2o/h2o-2.2.6-r1.ebuild @@ -0,0 +1,105 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_MAKEFILE_GENERATOR="emake" +SSL_DEPS_SKIP=1 +USE_RUBY="ruby24 ruby25 ruby26" + +inherit cmake ruby-single ssl-cert systemd toolchain-funcs + +DESCRIPTION="H2O - the optimized HTTP/1, HTTP/2 server" +HOMEPAGE="https://h2o.examp1e.net/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="libh2o +mruby" + +RDEPEND=" + acct-group/h2o + acct-user/h2o + dev-lang/perl + sys-libs/zlib + libh2o? ( dev-libs/libuv ) + dev-libs/openssl:0= +" +DEPEND=" + ${RDEPEND} + libh2o? ( virtual/pkgconfig ) + mruby? ( + ${RUBY_DEPS} + || ( + dev-libs/onigmo + dev-libs/oniguruma + ) + sys-devel/bison + virtual/pkgconfig + ) +" +RDEPEND+="!sci-libs/libh2o" + +PATCHES=( "${FILESDIR}"/${PN}-2.2-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_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 +} diff --git a/www-servers/h2o/h2o-9999.ebuild b/www-servers/h2o/h2o-9999.ebuild index 24da7a201180..d1f780ab5f1b 100644 --- a/www-servers/h2o/h2o-9999.ebuild +++ b/www-servers/h2o/h2o-9999.ebuild @@ -1,28 +1,34 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 + CMAKE_MAKEFILE_GENERATOR="emake" SSL_DEPS_SKIP=1 USE_RUBY="ruby24 ruby25 ruby26" -inherit cmake-utils git-r3 ruby-single ssl-cert systemd toolchain-funcs user +inherit cmake git-r3 ruby-single ssl-cert systemd toolchain-funcs + +EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" 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="dev-lang/perl +RDEPEND=" + acct-group/h2o + acct-user/h2o + dev-lang/perl sys-libs/zlib libh2o? ( dev-libs/libuv ) dev-libs/openssl:0= " -DEPEND="${RDEPEND} +DEPEND=" + ${RDEPEND} libh2o? ( virtual/pkgconfig ) mruby? ( ${RUBY_DEPS} @@ -32,19 +38,14 @@ DEPEND="${RDEPEND} ) sys-devel/bison virtual/pkgconfig - )" -RDEPEND+=" - !sci-libs/libh2o" + ) +" +RDEPEND+="!sci-libs/libh2o" PATCHES=( "${FILESDIR}"/${PN}-2.3-mruby.patch ) -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 -1 ${PN} -} - src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare local ruby="ruby" if use mruby; then @@ -75,11 +76,11 @@ src_configure() { -DWITHOUT_LIBS=$(usex !libh2o) -DBUILD_SHARED_LIBS=$(usex libh2o) ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install keepdir /var/www/localhost/htdocs @@ -98,8 +99,8 @@ src_install() { } pkg_postinst() { - if [[ ! -f "${EROOT}"etc/ssl/${PN}/server.key ]]; then + if [[ ! -f "${EROOT}"/etc/ssl/${PN}/server.key ]]; then install_cert /etc/ssl/${PN}/server - chown ${PN}:${PN} "${EROOT}"etc/ssl/${PN}/server.* + chown ${PN}:${PN} "${EROOT}"/etc/ssl/${PN}/server.* fi } |