vp-build/srcpkgs/opensmtpd/template

51 lines
1.7 KiB
Bash

# Template file for 'opensmtpd'
pkgname=opensmtpd
version=6.0.2p1
revision=2
build_style=gnu-configure
configure_args="--sysconfdir=/etc/smtpd --sbindir=/usr/bin
--with-path-socket=/run --with-mantype=doc --with-pie --with-table-db
--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt
ac_cv_func_explicit_bzero=no
ac_cv_func_reallocarray=no
ac_cv_func_strlcat=no
ac_cv_func_strlcpy=no"
hostmakedepends="automake libtool pkg-config bison"
makedepends="zlib-devel libressl-devel libevent-devel db-devel libasr-devel"
depends="ca-certificates"
conf_files="/etc/smtpd/smtpd.conf /etc/smtpd/aliases"
provides="smtp-forwarder-0_1 smtp-server-0_1"
replaces="smtp-forwarder>=0 smtp-server>=0"
short_desc="Free implementation of the server-side SMTP protocol"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="BSD, ISC, MIT"
homepage="https://www.opensmtpd.org"
distfiles="https://www.opensmtpd.org/archives/${pkgname}-${version}.tar.gz"
checksum=2af9b6d08784c7e546bf124bb61e311a6aa0c9835507710a76f5c242383190ac
system_accounts="_smtpd _smtpq"
case "$XBPS_TARGET_MACHINE" in
*-musl) configure_args+=" --with-libfts=${XBPS_CROSS_BASE}/usr"
makedepends+=" musl-fts-devel"
;;
esac
pre_configure() {
touch README AUTHORS NEWS ChangeLog
autoreconf -fi
# XXX hardcode the libevent major version for now.
# XXX the configure test needs to execute a binary to
# XXX get this result.
sed -e 's,^\(libevent_major_version\)=.*$,\1=2,' -i configure
sed -ri 's,/etc/mail,/etc/smtpd,g' smtpd/smtpd.conf
}
post_install() {
for f in newaliases mailq makemap sendmail; do
ln -s smtpctl ${DESTDIR}/usr/bin/$f
done
vsv opensmtpd
vlicense LICENSE
vinstall /dev/null 644 etc/smtpd aliases
}