Install this version:
emerge -a =sys-apps/systemd-dovecot-timer-1.2
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-apps/systemd-dovecot-timer-1.2
Or alternatively:
emerge --autounmask-write -a =sys-apps/systemd-dovecot-timer-1.2
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit systemd
DESCRIPTION="some dovecot timer units"
HOMEPAGE="https://github.com/internethering"
# Need to set S due to PMS saying we need it existing, but no SRC_URI
S=${WORKDIR}
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_install() {
for i in "${FILESDIR}/*.*"
do
systemd_dounit $i
done
}