summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2022-01-08 11:55:26 +0100
committerHans de Graaff <graaff@gentoo.org>2022-01-08 12:47:05 +0100
commit8ddc4e49bf03179181c421e403b69b8c13276687 (patch)
tree4c7279aec4b8007cc0ed338e885bb79aa5dc2e03 /net-nntp
parentdev-ruby/parser: add 3.1.0.0 (diff)
downloadgentoo-8ddc4e49bf03179181c421e403b69b8c13276687.tar.gz
gentoo-8ddc4e49bf03179181c421e403b69b8c13276687.tar.bz2
gentoo-8ddc4e49bf03179181c421e403b69b8c13276687.zip
net-nntp/leafnode: cleanup
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'net-nntp')
-rw-r--r--net-nntp/leafnode/leafnode-1.11.11.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/net-nntp/leafnode/leafnode-1.11.11.ebuild b/net-nntp/leafnode/leafnode-1.11.11.ebuild
deleted file mode 100644
index e33becee0edf..000000000000
--- a/net-nntp/leafnode/leafnode-1.11.11.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit epatch
-
-DESCRIPTION="A USENET software package designed for small sites"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-HOMEPAGE="http://leafnode.sourceforge.net/"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="ipv6"
-
-DEPEND=">=dev-libs/libpcre-3.9"
-RDEPEND="${DEPEND}
- virtual/inetd"
-DOCS=( CREDITS ChangeLog FAQ.txt FAQ.pdf INSTALL NEWS README-daemontools UNINSTALL-daemontools README README-MAINTAINER README-FQDN )
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-${PV}-checkpeerlocal_ipv6_fix.patch"
-}
-
-src_configure() {
- econf \
- --sysconfdir=/etc/leafnode \
- --localstatedir=/var \
- --with-spooldir=/var/spool/news \
- $(use_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
-
- dohtml FAQ.html FAQ.xml README-FQDN.html
-}