summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2021-07-15 21:12:46 +0200
committerConrad Kostecki <conikost@gentoo.org>2021-07-15 21:12:54 +0200
commit1c1cdd1f504c8d1bfc9f3881c4c02f5500d57e72 (patch)
treeef228e1a936c4e1604bf74c1c945acf49e2766c7 /net-misc/gofish
parentnet-misc/gofish: stable amd64 (diff)
downloadgentoo-1c1cdd1f504c8d1bfc9f3881c4c02f5500d57e72.tar.gz
gentoo-1c1cdd1f504c8d1bfc9f3881c4c02f5500d57e72.tar.bz2
gentoo-1c1cdd1f504c8d1bfc9f3881c4c02f5500d57e72.zip
net-misc/gofish: drop old version
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc/gofish')
-rw-r--r--net-misc/gofish/files/gofish.confd27
-rw-r--r--net-misc/gofish/files/gofish.rc33
-rw-r--r--net-misc/gofish/gofish-1.2.ebuild36
3 files changed, 0 insertions, 96 deletions
diff --git a/net-misc/gofish/files/gofish.confd b/net-misc/gofish/files/gofish.confd
deleted file mode 100644
index af244521a7e7..000000000000
--- a/net-misc/gofish/files/gofish.confd
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# Config file for gofish Gentoo start-script.
-# Should be stored as: /etc/conf.d/gofish
-#
-
-# Application name
-GOFISH_APP=gofish
-
-# Path to gofish executable
-GOFISH_EXEC=/usr/sbin/gofish
-
-# The gofish config file
-GOFISH_CONF_FILE=/etc/gofish.conf
-
-# The start options
-GOFISH_START_OPTS="-d"
-
-# The stop options
-GOFISH_STOP_OPTS=""
-
-# The reload options
-GOFISH_RELOAD_OPTS=""
-
-# The pid file
-GOFISH_PIDFILE=/var/run/gofish.pid
-
-
diff --git a/net-misc/gofish/files/gofish.rc b/net-misc/gofish/files/gofish.rc
deleted file mode 100644
index 5667b78a7c1b..000000000000
--- a/net-misc/gofish/files/gofish.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/sbin/openrc-run
-#
-# Startup script for the Gofish Gopher Server (for Gentoo Linux)
-#
-# config: /etc/conf.d/gofish
-##
-# use: rc-update add gofish default
-#
-
-opts="start stop"
-
-depend() {
- need net
-}
-
-
-start() {
- ebegin "Starting ${GOFISH_APP} "
- start-stop-daemon --start --verbose --pidfile ${GOFISH_PIDFILE} \
- --exec ${GOFISH_EXEC} -- ${GOFISH_START_OPTS}
- eend $?
-}
-
-
-stop() {
- ebegin "Stopping ${GOFISH_APP} "
- start-stop-daemon --stop --quiet --pidfile ${GOFISH_PIDFILE} \
- --exec ${GOFISH_EXEC} -- ${GOFISH_STOP_OPTS}
- eend $?
-}
-
-
-
diff --git a/net-misc/gofish/gofish-1.2.ebuild b/net-misc/gofish/gofish-1.2.ebuild
deleted file mode 100644
index 6ab8823d84a2..000000000000
--- a/net-misc/gofish/gofish-1.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit user
-
-DESCRIPTION="Gofish gopher server"
-HOMEPAGE="http://gofish.sourceforge.net"
-SRC_URI="mirror://sourceforge/gofish/${P}.tar.gz"
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
-
-pkg_setup() {
- enewgroup gopher
- enewuser gopher -1 -1 -1 gopher
-}
-
-src_configure() {
- local myeconfargs=(
- --localstatedir=/var
- --disable-mmap-cache
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- dodoc Configure_GoFish
- newinitd "${FILESDIR}"/gofish.rc gofish
- newconfd "${FILESDIR}"/gofish.confd gofish
-}