# Template file for 'opensmtpd'
pkgname=opensmtpd
version=7.6.0p1
revision=1
build_style=gnu-configure
configure_args="--sysconfdir=/etc/smtpd --sbindir=/usr/bin
 --with-path-socket=/run --with-path-pidfile=/run
 --with-pie --with-table-db
 --with-path-CAfile=/etc/ssl/certs/ca-certificates.crt
 --with-maildir=/var/mail
 --with-auth-pam=smtpd
 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 openssl-devel libevent-devel db-devel pam-devel"
depends="ca-certificates"
conf_files="/etc/smtpd/smtpd.conf /etc/smtpd/aliases"
short_desc="Free implementation of the server-side SMTP protocol"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="BSD-3-Clause, ISC, MIT"
homepage="https://www.opensmtpd.org"
distfiles="https://www.opensmtpd.org/archives/${pkgname}-${version}.tar.gz"
checksum=b27c806982a6653a2637f810ae7a45372b9a7ff99350ee1003746503ff0e4a97
provides="smtp-forwarder-0_1 smtp-server-0_1"
replaces="smtp-forwarder>=0 smtp-server>=0"
system_accounts="_smtpd _smtpq"

CFLAGS=-D_DEFAULT_SOURCE

if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then
	makedepends+=" libxcrypt-devel"
fi

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' usr.sbin/smtpd/smtpd.conf
}
post_install() {
	for f in newaliases mailq makemap sendmail; do
		ln -s smtpctl ${DESTDIR}/usr/bin/$f
	done
	vinstall ${FILESDIR}/smtpd.pam 644 etc/pam.d smtpd
	vsv opensmtpd
	vlicense LICENSE
	vinstall /dev/null 644 etc/smtpd aliases
}
