www-apache/mod_jk: add 1.2.49

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2023-09-13 21:41:12 +02:00
parent 6c99d46fba
commit d9b006b538
2 changed files with 77 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST tomcat-connectors-1.2.48-src.tar.gz 3665280 BLAKE2B eca84f31235e441dea08fd7f0e44de4370799e9781384a0a4329ae48c9dab4b146733bf810669fdcf60ede9e67e139942ccfe12c74e15f4eda19d9107f9b6150 SHA512 955a830724a3902e29032a5d2e7603d3170334e8a383d314f6bf8539d53d9f7ee4cfa0b31cfc954acb0a13d9975ed2229de085d08de3885f8679b509924fde47
DIST tomcat-connectors-1.2.49-src.tar.gz 1702479 BLAKE2B 5994bbff6b8c11770cfe8287590d3af793d8720b8a54ecb066abe481e158517c25757a575c9db197e39b1ffc957f27237e92818a9da557db78e5d286b58b1d13 SHA512 936eb017ff9d9011996933838d5c306ede9ae1886405f4daed60719ee522cca6075dedb3b647863ef12155cca93f6db8e58209a5d3bbd2da157ffc536a6809f2

View File

@@ -0,0 +1,76 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P="tomcat-connectors-${PV#-*}-src"
inherit apache-module autotools
DESCRIPTION="Provides an AJP Apache2-JK-connector for the Tomcat servlet engine"
HOMEPAGE="https://tomcat.apache.org/connectors-doc/"
SRC_URI="mirror://apache/tomcat/tomcat-connectors/jk/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}/native"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
DEPEND="dev-libs/apr:1="
RDEPEND="${DEPEND}"
BDEPEND="dev-lang/perl"
APACHE2_MOD_FILE="${S}/apache-2.0/${PN}.so"
APACHE2_MOD_DEFINE="JK"
PATCHES=(
"${FILESDIR}"/${P}-clang16.patch
)
need_apache2
pkg_setup() {
# Calling depend.apache_pkg_setup fails because we do not have
# "apache2" in IUSE but the function expects this in order to call
# _init_apache2_late which sets the APACHE_MODULESDIR variable.
_init_apache2
_init_apache2_late
}
src_prepare() {
default
# Don't add '-Wl,' as prefix for CFLAGS, as linker will fail
sed -e '/JK_PREFIX_IF_MISSING/d' -i configure.ac || die
eautoreconf
# Adjust confpath and logpath for Gentoo
local logs_path="/var/log/apache2"
sed -e "s|conf|${APACHE_CONFDIR}|g" -e "s|logs|${logs_path}|g" -i ../conf/httpd-jk.conf || die
}
src_configure() {
local myeconfargs=(
--disable-static
--with-apxs="${APXS}"
)
econf "${myeconfargs[@]}"
}
src_compile() {
LIBTOOL="/bin/sh $(pwd)/libtool --silent"
default
}
src_install() {
apache-module_src_install
insinto "${APACHE_CONFDIR}"
doins "${S}"/../conf/*.properties
insinto "${APACHE_MODULES_CONFDIR}"
newins ../conf/httpd-jk.conf 88_mod_jk.conf
einstalldocs
}