File apache2-mod_jk.spec of Package apache2-mod_jk
#
# spec file for package apache2-mod_jk
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: apache2-mod_jk
BuildRequires: apache2-devel
BuildRequires: java2-devel-packages
BuildRequires: pcre-devel
%define section free
%define apache_branch %(rpm -q --qf %%{version} apache2 | grep -E -o "2\\.[0-9]+")
%if "%{apache_branch}" == "2.4"
%define apxs %{_bindir}/apxs2
%else
%define apxs %{_sbindir}/apxs2
%endif
%define connectors_root tomcat-connectors-1.2.37-src
%define apache2_sysconfdir %(%{apxs} -q SYSCONFDIR)
%define apache2_libexecdir %(%{apxs} -q LIBEXECDIR)
%define apache2_mmn %(MMN=$(%{apxs} -q LIBEXECDIR)_MMN; test -x $MMN && $MMN)
%define apache2_cflags %(%{apxs} -q CFLAGS)
Summary: Connectors between Apache and Tomcat Servlet Container
License: Apache-2.0
Group: Productivity/Networking/Web/Frontends
Version: 1.2.37
Release: 0
Requires: %{apache2_mmn}
Requires: apache2
Provides: mod_jk = %{version}-%{release}
Provides: mod_jk-ap20
Provides: mod_jk-ap20:%{_libdir}/apache2/mod_jk.so
Obsoletes: mod_jk-ap20 < %{version}
Obsoletes: tomcat-mod < %{version}
Url: http://jakarta.apache.org
Source0: http://www.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.37-src.tar.gz
Source1: jk.conf
Source2: README.SUSE
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This package provides modules for Apache to invisibly integrate Tomcat
capabilities into an existing Apache installation.
To load the module into Apache, run the command "a2enmod jk" as root.
%prep
%setup -q -n %{connectors_root}
%build
# prepare apr
export APACHE2_CFLAGS="%apache2_cflags"
cd $RPM_BUILD_DIR/%{connectors_root}/native
./configure --with-apxs=%{apxs}
make %{?_smp_mflags}
%install
# AJP Connector jk
install -d -m 755 $RPM_BUILD_ROOT%{apache2_libexecdir}
pushd $RPM_BUILD_DIR/%{connectors_root}
install -m 755 native/apache-2.0/.libs/mod_jk.so $RPM_BUILD_ROOT%{apache2_libexecdir}/
popd
cp %{SOURCE1} .
cp %{SOURCE2} .
%files
%defattr(-,root,root,-)
%doc LICENSE README.SUSE
#mod_jk.conf.sample workers.properties.sample
%doc conf/workers.properties
%doc jk.conf
%{apache2_libexecdir}/*
%changelog