mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 21:55:04 +02:00
It's FreeBSD ioctl, but adding correct include feels more correct than QA_SKIPping it. Closes: https://bugs.gentoo.org/900268 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40423 Signed-off-by: Sam James <sam@gentoo.org>
57 lines
1.3 KiB
Bash
57 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="A USENET software package designed for small sites"
|
|
HOMEPAGE="https://leafnode.sourceforge.io/"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
|
|
DEPEND=">=dev-libs/libpcre2-10"
|
|
RDEPEND="${DEPEND}
|
|
virtual/inetd"
|
|
DOCS=( CREDITS ChangeLog FAQ.txt FAQ.pdf INSTALL NEWS UNINSTALL-daemontools README README-MAINTAINER README-FQDN )
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-1.11.11-configure.patch" )
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# bug https://bugs.gentoo.org/900268
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--sysconfdir=/etc/leafnode \
|
|
--localstatedir=/var \
|
|
--with-spooldir=/var/spool/news \
|
|
--with-ipv6
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
keepdir \
|
|
/var/lib/news \
|
|
/var/spool/news/{failed.postings,interesting.groups,leaf.node,out.going,temp.files} \
|
|
/var/spool/news/message.id/{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
|
|
|
|
fowners -R news:news /var/{lib,spool}/news
|
|
|
|
insinto /etc/xinetd.d
|
|
newins "${FILESDIR}"/leafnode.xinetd leafnode-nntp
|
|
|
|
exeinto /etc/cron.hourly
|
|
newexe "${FILESDIR}"/fetchnews.cron fetchnews
|
|
exeinto /etc/cron.daily
|
|
newexe "${FILESDIR}"/texpire.cron texpire
|
|
|
|
dodoc FAQ.html FAQ.xml README-FQDN.html
|
|
}
|