void-packages/srcpkgs/cherokee/template

65 lines
1.9 KiB
Bash
Raw Normal View History

# Template file for 'cherokee'
pkgname=cherokee
2014-09-29 09:23:39 +02:00
version=1.2.104
2015-08-06 10:25:33 +02:00
revision=8
2014-09-29 09:23:39 +02:00
wrksrc="webserver-${version}"
build_style=gnu-configure
2015-06-02 16:43:57 +02:00
configure_args="--sbindir=/usr/bin
2014-02-18 15:57:47 +01:00
--disable-static --with-wwwroot=/srv/httpd --with-wwwuser=httpd
--with-wwwgroup=httpd --with-python=python --enable-os-string=Linux"
hostmakedepends="automake libtool python"
makedepends="libressl-devel pcre-devel python-devel libldap-devel pam-devel
libmysqlclient-devel ffmpeg-devel geoip-devel"
2014-09-29 09:23:39 +02:00
short_desc="Innovative, feature rich and easy to configure web server"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2014-02-18 15:57:47 +01:00
homepage="http://www.cherokee-project.com/"
license="GPL-2"
2014-09-29 09:23:39 +02:00
distfiles="https://github.com/${pkgname}/webserver/archive/v${version}.tar.gz"
checksum=5cbd00ff48503eaf90356b2975e311c02977f9166927e57fc23f541a109efd98
2014-02-18 15:57:47 +01:00
conf_files="/etc/${pkgname}/${pkgname}.conf"
system_accounts="httpd"
httpd_descr="Cherokee HTTP server"
httpd_homedir="/srv/httpd"
make_dirs="
/etc/cherokee/ssl 0755 httpd httpd
/var/log/cherokee 0755 httpd httpd
/var/lib/cherokee/graphs/images 0755 httpd httpd"
pre_configure() {
2014-09-29 09:23:39 +02:00
if [ "$CROSS_BUILD" ]; then
_args="--host=${XBPS_CROSS_TRIPLET}"
fi
NOCONFIGURE=1 ./autogen.sh ${_args}
# use /var/log/cherokee instead of /var/log
2014-02-18 15:57:47 +01:00
sed -i -r 's|(%localstatedir%/log)|\1/cherokee|' cherokee.conf.sample.pre
}
post_install() {
# Setup logrotate thing
vinstall ${FILESDIR}/${pkgname}.logrotate 644 etc/logrotate.d ${pkgname}
2014-09-29 09:23:39 +02:00
# Install PAM configuration file
vinstall pam.d_cherokee 644 etc/pam.d ${pkgname}
}
cherokee-devel_package() {
2014-09-29 09:23:39 +02:00
depends="lib${sourcepkg}>=${version}_${revision}"
2013-06-29 09:23:17 +02:00
short_desc+=" - development files"
pkg_install() {
vmove usr/bin/cherokee-config
2014-09-29 09:23:39 +02:00
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/share/aclocal
vmove "usr/lib/*.so"
}
}
libcherokee_package() {
2014-09-29 09:23:39 +02:00
short_desc+=" - runtime library"
pkg_install() {
vmove "usr/lib/*.so.*"
vmove usr/lib/cherokee
}
}