2010-04-30 18:09:05 +02:00
|
|
|
# Template file for 'apache-mpm-event'
|
|
|
|
#
|
|
|
|
# We inherit all stuff from the apache build template.
|
|
|
|
. ${XBPS_SRCPKGDIR}/apache/template
|
|
|
|
|
|
|
|
# Unset unused stuff.
|
2011-10-11 05:32:33 +02:00
|
|
|
unset subpackages conf_files system_accounts systemd_services
|
2011-07-05 10:28:19 +02:00
|
|
|
unset post_install pre_configure run_depends
|
2010-04-30 18:09:05 +02:00
|
|
|
|
|
|
|
# Override some vars.
|
|
|
|
pkgname=apache-mpm-event
|
2012-01-27 10:51:14 +01:00
|
|
|
configure_args="${configure_args} --enable-modules= --prefix=/usr --with-mpm=event"
|
2012-05-23 18:26:56 +02:00
|
|
|
depends="libdb gdbm expat libuuid expat libdb gdbm apache>=2.2.22"
|
|
|
|
makedepends="pkg-config perl>=0 zlib-devel libuuid-devel pcre-devel openssl-devel db-devel gdbm-devel expat-devel libldap-devel apr-devel apr-util-devel"
|
2010-04-30 18:09:05 +02:00
|
|
|
short_desc="Apache HTTP Server - event driven model"
|
|
|
|
long_desc="
|
2011-07-14 01:21:02 +02:00
|
|
|
Each Apache Multi-Processing Module provides a different flavor of web
|
2010-04-30 18:09:05 +02:00
|
|
|
server binary, compiled with a different processing model.
|
|
|
|
|
|
|
|
The event MPM is designed to allow more requests to be served simultaneously
|
|
|
|
by passing off some processing work to supporting threads, freeing up the
|
|
|
|
main threads to work on new requests. It is especially suitable for sites
|
|
|
|
that see extensive KeepAlive traffic.
|
|
|
|
|
|
|
|
This MPM is experimental and less tested than the worker and prefork MPMs."
|
|
|
|
|
2012-01-27 10:51:14 +01:00
|
|
|
systemd_services="apache-mpm-event.service on"
|
|
|
|
|
|
|
|
# dlopen(3) run-time dependencies.
|
2010-04-30 18:09:05 +02:00
|
|
|
|
2012-01-27 10:51:14 +01:00
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
cat ${XBPS_SRCPKGDIR}/apache/files/xbps.layout >> config.layout
|
2010-04-30 18:09:05 +02:00
|
|
|
}
|
|
|
|
|
2012-01-27 10:51:14 +01:00
|
|
|
post_install() {
|
2010-04-30 18:09:05 +02:00
|
|
|
# We are only interested in the httpd binary.
|
|
|
|
cp -f ${DESTDIR}/usr/sbin/httpd ${wrksrc}
|
|
|
|
rm -rf ${DESTDIR}/*
|
2012-01-27 10:51:14 +01:00
|
|
|
vinstall httpd 755 usr/sbin httpd.event
|
2012-01-28 10:10:49 +01:00
|
|
|
vinstall ${FILESDIR}/${pkgname}.service 644 lib/systemd/system
|
2010-04-30 18:09:05 +02:00
|
|
|
}
|