void-packages/srcpkgs/apache/template

117 lines
4.4 KiB
Plaintext

# Template file for 'apache'
pkgname=apache
version=2.2.22
wrksrc=httpd-${version}
distfiles="http://www.apache.org/dist/httpd/httpd-${version}.tar.bz2"
build_style=gnu-configure
configure_args="--prefix= --enable-pie --enable-modules=all
--enable-mods-shared=all --enable-authn-dbm --enable-authn-anon
--enable-authn-dbd --enable-authn-alias --enable-authz-dbm
--enable-authz-owner --enable-authnz-ldap --enable-auth-digest -enable-isapi
--enable-file-cache --enable-cache --enable-disk-cache --enable-mem-cache
--enable-dbd --enable-bucketeer --enable-dumpio --enable-echo --enable-reqtimeout
--enable-ext-filter --enable-substitute --enable-deflate --enable-charset-lite
--enable-ldap --enable-log-forensic --enable-logio --enable-mime-magic
--enable-cern-meta --enable-expires --enable-headers --enable-ident
--enable-usertrack --enable-unique-id --enable-proxy --enable-proxy-connect
--enable-proxy-ftp --enable-proxy-http --enable-proxy-scgi --enable-proxy-ajp
--enable-proxy-balancer --enable-ssl --enable-http --enable-speling
--enable-dav --enable-info --enable-cgi --enable-cgid --enable-dav-fs
--enable-dav-lock --enable-vhost-alias --enable-imagemap --enable-so
--enable-rewrite --with-pcre=/usr --enable-layout=XBPS --sysconfdir=/etc/httpd"
short_desc="The Number One HTTP Server On The Internet"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://httpd.apache.org/"
license="Apache-2.0"
checksum=dcdc9f1dc722f84798caf69d69dca78daa5e09a4269060045aeca7e4f44cb231
long_desc="
The Apache HTTP Server Project is an effort to develop and maintain an
open-source HTTP server for modern operating systems including UNIX and
Windows NT. The goal of this project is to provide a secure, efficient and
extensible server that provides HTTP services in sync with the current HTTP
standards."
subpackages="apache-devel"
conf_files="
/etc/httpd/extra/httpd-autoindex.conf
/etc/httpd/extra/httpd-dav.conf
/etc/httpd/extra/httpd-manual.conf
/etc/httpd/extra/httpd-vhosts.conf
/etc/httpd/extra/httpd-info.conf
/etc/httpd/extra/httpd-languages.conf
/etc/httpd/extra/httpd-userdir.conf
/etc/httpd/extra/httpd-ssl.conf
/etc/httpd/extra/httpd-mpm.conf
/etc/httpd/extra/httpd-default.conf
/etc/httpd/extra/httpd-multilang-errordoc.conf
/etc/httpd/httpd.conf
/etc/httpd/magic
/etc/httpd/mime.types"
systemd_services="apache.service on"
system_accounts="httpd"
httpd_descr="Apache HTTP server"
httpd_homedir="/srv/httpd"
Add_dependency run libdb
Add_dependency run gdbm
Add_dependency run expat
Add_dependency build pkg-config
Add_dependency build sed
Add_dependency build perl ">=0"
Add_dependency build zlib-devel
Add_dependency build libuuid-devel
Add_dependency build pcre-devel
Add_dependency build openssl-devel
Add_dependency build db-devel
Add_dependency build gdbm-devel
Add_dependency build expat-devel
Add_dependency build libldap-devel
Add_dependency build apr-devel
Add_dependency build apr-util-devel
pre_configure() {
# set default user
sed -e 's#User daemon#User httpd#' \
-e 's#Group daemon#Group httpd#' \
-i docs/conf/httpd.conf.in
cat ${FILESDIR}/xbps.layout >> config.layout
}
post_install() {
# Enable userdir, languages, autoindex, errors.
# Set a working ServerRoot, disable mod_unique_id.
# Set and enable ServerName to 127.0.0.1.
sed -e 's|#\(Include /etc/httpd/extra/httpd-multilang-errordoc.conf\)|\1|' \
-e 's|#\(Include /etc/httpd/extra/httpd-autoindex.conf\)|\1|' \
-e 's|#\(Include /etc/httpd/extra/httpd-languages.conf\)|\1|' \
-e 's|#\(Include /etc/httpd/extra/httpd-userdir.conf\)|\1|' \
-e 's|#\(Include /etc/httpd/extra/httpd-default.conf\)|\1|' \
-e 's|ServerRoot \"\"|ServerRoot \"/etc/httpd\"|' \
-e 's|#\(ServerName\).*|\1 127.0.0.1:80|' \
-e 's|\(LoadModule unique_id_module.*\)|#\1|' \
-i ${DESTDIR}/etc/httpd/httpd.conf
# symlinks for /etc/httpd
ln -fs /var/log/httpd ${DESTDIR}/etc/httpd/logs
ln -fs /var/run/httpd ${DESTDIR}/etc/httpd/run
ln -fs /usr/libexec/httpd ${DESTDIR}/etc/httpd/modules
ln -fs /usr/share/apache-httpd/build ${DESTDIR}/etc/httpd/build
# Remove unused stuff.
rm -f ${DESTDIR}/srv/httpd/cgi-bin/test-cgi
rm -f ${DESTDIR}/srv/httpd/cgi-bin/printenv
rm -f ${DESTDIR}/srv/httpd/index.html
# systemd and logrotate files.
vinstall ${FILESDIR}/apache.logrotate 644 etc/logrotate.d apache
vinstall ${FILESDIR}/apache.service 644 lib/systemd/system
vinstall ${FILESDIR}/apache.tmpfiles 644 usr/lib/tmpfiles.d apache.conf
rm -rf ${DESTDIR}/etc/httpd/original
}