From 134aa1c6904d547d00486b95c83af4be09870c93 Mon Sep 17 00:00:00 2001 From: Sergey Popov Date: Thu, 16 Feb 2023 12:34:59 +0300 Subject: [PATCH] net-misc/sgopherd: drop unused package --- net-misc/sgopherd/metadata.xml | 8 ----- net-misc/sgopherd/sgopherd-9999.ebuild | 41 -------------------------- 2 files changed, 49 deletions(-) delete mode 100644 net-misc/sgopherd/metadata.xml delete mode 100644 net-misc/sgopherd/sgopherd-9999.ebuild diff --git a/net-misc/sgopherd/metadata.xml b/net-misc/sgopherd/metadata.xml deleted file mode 100644 index ae4fa19..0000000 --- a/net-misc/sgopherd/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - admin@pinkbyte.ru - Sergey Popov - - diff --git a/net-misc/sgopherd/sgopherd-9999.ebuild b/net-misc/sgopherd/sgopherd-9999.ebuild deleted file mode 100644 index 168e4ab..0000000 --- a/net-misc/sgopherd/sgopherd-9999.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -EGIT_REPO_URI="https://www.uninformativ.de/git/sgopherd.git" - -inherit git-r3 - -DESCRIPTION="Small Gopher Server written in GNU Bash" -HOMEPAGE="https://www.uninformativ.de/git/sgopherd/file/README.html" -SRC_URI="" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" - -DEPEND="" -RDEPEND="app-shells/bash - sys-apps/sed - sys-apps/xinetd" - -src_prepare() { - # Set default user to run sgopherd - sed -i -e '/user/s/http/nobody/' xinetd/xinetd-example.conf || die 'sed failed' - default -} - -src_install() { - dodoc README - doman man8/"${PN}".8 - dobin "${PN}" - insinto /etc/xinetd.d - newins xinetd/xinetd-example.conf "${PN}" - # TODO: add installation of systemd-related files -} - -pkg_postinst() { - elog "${PN} can be launched through xinetd" - elog "Configuration options are in /etc/xinetd.d/${PN}" -}