diff options
author | Erich Eckner <git@eckner.net> | 2020-05-19 08:57:54 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-05-19 08:57:54 +0200 |
commit | 003adc3e287625721373610caab796e6262e3121 (patch) | |
tree | bc377edf1da3def11350989ed129f721daa19421 /courier-authlib-devel | |
parent | 8184d8f6b4c7192de0d5aebb5cadb09e20b68083 (diff) | |
download | archlinuxewe-003adc3e287625721373610caab796e6262e3121.tar.xz |
courier-authlib-devel new
Diffstat (limited to 'courier-authlib-devel')
-rw-r--r-- | courier-authlib-devel/PKGBUILD | 90 | ||||
-rw-r--r-- | courier-authlib-devel/authdaemond.service | 15 | ||||
-rw-r--r-- | courier-authlib-devel/courier-authlib.install | 15 | ||||
-rw-r--r-- | courier-authlib-devel/courier-sysusers.conf | 2 |
4 files changed, 122 insertions, 0 deletions
diff --git a/courier-authlib-devel/PKGBUILD b/courier-authlib-devel/PKGBUILD new file mode 100644 index 000000000..a82fb463e --- /dev/null +++ b/courier-authlib-devel/PKGBUILD @@ -0,0 +1,90 @@ +# Maintainer: Erich Eckner <arch at eckner dot net> +# Contributor: Runnytu < runnytu at gmail dot com > +# Old Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Old Maintainer: Jonas Heinrich <onny@project-insanity.org> +# Contributor: tobias <tobias@archlinux.org> +# Contributor: Tobias Kieslich <tobias@justdreams.de> +# Contributor: Neil Romig <neilromig@gmail.com> + +pkgname=courier-authlib-devel +_pkgname=${pkgname%-*} +pkgver=0.70.0.20200518 +pkgrel=4 +pkgdesc="Authentication library for the Courier mailserver(s)" +arch=(i686 pentium4 x86_64) +license=('GPL2') +url="https://courier-mta.org/authlib/" +backup=('etc/authlib/authdaemonrc' 'etc/authlib/authldaprc' \ + 'etc/authlib/authmysqlrc' 'etc/authlib/authpgsqlrc') +depends=('openssl' 'gdbm' 'perl' 'libtool' 'expect' 'courier-unicode>=2.1') +makedepends=('pam' 'libldap' 'libmariadbclient' 'postgresql-libs>=8.3.0') +optdepends=('sqlite: With support for the authsqlite authentication module' + 'libmariadbclient: With support for the authmysql authentication module' + 'libldap: With support for the authldap authentication module' + 'postgresql-libs: With support for the authpgsql authentication module' + 'pam: With support for the authpam authentication module') +options=(!libtool !staticlibs emptydirs) +install=${_pkgname}.install +source=(https://downloads.sourceforge.net/project/courier/authlib-devel/${pkgver##*.}/${_pkgname}-${pkgver}.tar.bz2 + authdaemond.service + courier-sysusers.conf) +sha512sums=('a8c2881baa311827198259499ed284ff09b278fd24da28153e0c20932b8cd3baea0de415f1b7e19e7efdce906eb84b763830e2ca67267028435f6d5530d3c77f' + '7855fadbef9e6845868d720f9637cc6fe97814b9d994641a351e48536e1985323f095c708f30abe0f3a0c1cb8e25a746da1bb5b2baf9f63d0498d01df39f843b' + 'c8c7dfd245ca7c6bf9174bb170bb45ff548eaa4c0b4049e3def12cf15f83d98347a0d3e0174dd7aae86c412117eee98f51428e8d3c8df61ccdcb5e929ab939a3') + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --with-db=gdbm \ + --with-mailuser=courier \ + --with-mailgroup=courier \ + --with-authpam \ + --with-authpwd \ + --with-authshadow \ + --with-authldap \ + --with-authmysql \ + --with-authpgsql \ + --with-authuserdb \ + --with-authcram \ + --with-authdaemon \ + --with-authdaemonvar=/run/authdaemon + #--with-authsqlite --with-sqlite-libs + make +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + + for _distfile in "${pkgdir}/etc/authlib/"*.dist; do + # change ownership - this is usually done by the Makefile where it is assumed the user & group already exist + chown 72:72 "${_distfile}" + # remove the .dist suffix - mimics the install-configure step of a standard Courier installation + mv "${_distfile}" "${pkgdir}/etc/authlib/"`basename "${_distfile}" .dist` + done + + # copy the .schema; mostly refered to as courier.schema -> rename it + install -Dm 444 authldap.schema "${pkgdir}/etc/openldap/schema/courier.schema" + + chown 72:72 "${pkgdir}/usr/lib/courier-authlib" + + # Install systemd sysuser file + install -Dm 644 "$srcdir/courier-sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/courier.conf" + + # Install service file + install -Dm 644 "${srcdir}/authdaemond.service" "${pkgdir}/usr/lib/systemd/system/authdaemond.service" + + mkdir -p "$pkgdir/var/spool/courier" + + echo '/usr/lib/courier-authlib' \ + | install -Dm 644 '/dev/stdin' "${pkgdir}/etc/ld.so.conf.d/courier-authlib.conf" + + rmdir "${pkgdir}/run/authdaemon" + +} diff --git a/courier-authlib-devel/authdaemond.service b/courier-authlib-devel/authdaemond.service new file mode 100644 index 000000000..6ac7e4aac --- /dev/null +++ b/courier-authlib-devel/authdaemond.service @@ -0,0 +1,15 @@ +[Unit] +Description=Courier Authentification Daemon + +[Service] +Type=forking +User=courier +Group=courier +RuntimeDirectory=authdaemon +ExecStart=/usr/bin/authdaemond start +ExecStop=/usr/bin/authdaemond stop +PIDFile=/run/authdaemon/pid +AmbientCapabilities=CAP_DAC_OVERRIDE + +[Install] +WantedBy=multi-user.target diff --git a/courier-authlib-devel/courier-authlib.install b/courier-authlib-devel/courier-authlib.install new file mode 100644 index 000000000..4d57a5537 --- /dev/null +++ b/courier-authlib-devel/courier-authlib.install @@ -0,0 +1,15 @@ +# arg 1: the new package version +post_install() { + # make sure the system can see authlib libraries + ldconfig +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install $1 +} + +post_remove() { + getent passwd courier >/dev/null 2>&1 && userdel courier +} diff --git a/courier-authlib-devel/courier-sysusers.conf b/courier-authlib-devel/courier-sysusers.conf new file mode 100644 index 000000000..2c49716c0 --- /dev/null +++ b/courier-authlib-devel/courier-sysusers.conf @@ -0,0 +1,2 @@ +u courier 72 "Courier user" /var/spool/courier +g courier 72 |