2010-04-30 18:05:20 +02:00
|
|
|
# Template file for 'apache-mpm-worker'
|
|
|
|
#
|
|
|
|
# We inherit all stuff from the apache build template.
|
|
|
|
. ${XBPS_SRCPKGDIR}/apache/template
|
|
|
|
|
|
|
|
# Unset unused stuff.
|
2013-04-12 08:55:23 +02:00
|
|
|
unset conf_files system_accounts systemd_services
|
2012-07-10 09:35:56 +02:00
|
|
|
unset post_install pre_configure depends
|
2014-02-18 09:31:48 +01:00
|
|
|
unset -f apache-devel_package
|
2010-04-30 18:05:20 +02:00
|
|
|
|
|
|
|
# Override some vars.
|
|
|
|
pkgname=apache-mpm-worker
|
2013-04-12 08:55:23 +02:00
|
|
|
configure_args+=" --enable-modules= --prefix=/usr --with-mpm=worker"
|
2014-02-18 09:31:48 +01:00
|
|
|
version=2.4.7
|
2013-04-03 16:47:00 +02:00
|
|
|
revision=1
|
2013-03-31 09:29:48 +02:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
homepage="http://httpd.apache.org/"
|
|
|
|
license="Apache-2.0"
|
2010-04-30 18:05:20 +02:00
|
|
|
short_desc="Apache HTTP Server - high speed threaded mode"
|
|
|
|
|
2014-01-01 16:10:11 +01:00
|
|
|
# dlopen(3) run-time dependencies.
|
|
|
|
depends="apache>=$version"
|
|
|
|
systemd_services="apache-mpm-worker.service on"
|
|
|
|
|
2012-01-27 11:03:34 +01:00
|
|
|
pre_configure() {
|
|
|
|
cat ${XBPS_SRCPKGDIR}/apache/files/xbps.layout >> config.layout
|
2010-04-30 18:05:20 +02:00
|
|
|
}
|
|
|
|
|
2012-01-27 11:03:34 +01:00
|
|
|
post_install() {
|
2010-04-30 18:05:20 +02:00
|
|
|
# We are only interested in the httpd binary.
|
|
|
|
cp -f ${DESTDIR}/usr/sbin/httpd ${wrksrc}
|
|
|
|
rm -rf ${DESTDIR}/*
|
2012-01-27 11:03:34 +01:00
|
|
|
vinstall httpd 755 usr/sbin httpd.worker
|
2012-07-10 09:35:56 +02:00
|
|
|
vinstall ${FILESDIR}/${pkgname}.service 644 usr/lib/systemd/system
|
2010-04-30 18:05:20 +02:00
|
|
|
}
|