# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit autotools

DESCRIPTION="Fast and efficient greylist server with DNSBL support"
HOMEPAGE="https://codeberg.org/bizdelnick/gross"
SRC_URI="https://codeberg.org/bizdelnick/${PN}/releases/download/v${PV}/${P}.tar.xz"

PATCHES=(
	"${FILESDIR}"/compile.patch
)

LICENSE="ISC"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="+dns"

DEPEND="
	dns? ( net-dns/c-ares )
"
RDEPEND="
	${DEPEND}
	acct-group/gross
	acct-user/gross
"

src_install() {
	default

	newinitd "${FILESDIR}"/gross.initd gross
}