summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-11-05 23:26:24 +0100
committerMichał Górny <mgorny@gentoo.org>2019-11-05 23:26:24 +0100
commitfdbb982cdf3ac8ec8b5d70a3260093450a7cbcc0 (patch)
tree2e0ec1c350061ce99c7e639a671a29cc2872681e /net-mail
parentnet-mail/popick: Remove last-rited pkg (diff)
downloadgentoo-fdbb982cdf3ac8ec8b5d70a3260093450a7cbcc0.tar.gz
gentoo-fdbb982cdf3ac8ec8b5d70a3260093450a7cbcc0.tar.bz2
gentoo-fdbb982cdf3ac8ec8b5d70a3260093450a7cbcc0.zip
net-mail/hotwayd: Remove last-rited pkg
Bug: https://bugs.gentoo.org/696252 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/hotwayd/Manifest1
-rw-r--r--net-mail/hotwayd/files/hotwayd.xinetd25
-rw-r--r--net-mail/hotwayd/hotwayd-0.8.4.ebuild75
-rw-r--r--net-mail/hotwayd/metadata.xml11
4 files changed, 0 insertions, 112 deletions
diff --git a/net-mail/hotwayd/Manifest b/net-mail/hotwayd/Manifest
deleted file mode 100644
index fe8d607340c0..000000000000
--- a/net-mail/hotwayd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST hotwayd-0.8.4.tar.bz2 161274 BLAKE2B 213b029a4b49332e748c8ec94e7a6860592c282c82e452e5bed285d568b38387cfca2bd305762934343a0b3140da14d98782d49e7715d1a388e8e0736d02e4ca SHA512 df965964c8186e51bd2b09f4a99919443efe1ee2e828d0bdd905383813069a45e4b6b321ace969b3071a0d83ad21a1b4f76cd4ba57f89e13a6569d8b65bd8efc
diff --git a/net-mail/hotwayd/files/hotwayd.xinetd b/net-mail/hotwayd/files/hotwayd.xinetd
deleted file mode 100644
index 65947585fa77..000000000000
--- a/net-mail/hotwayd/files/hotwayd.xinetd
+++ /dev/null
@@ -1,25 +0,0 @@
-# default: off
-# description: hotway daemon
-# - By default it listens to port 1100, so please adjust settings in your
-# clients
-# - By default it only allows access from localhost.
-# - Also all xinetd entries do not start by default.
-# One should manually enable the entries that one wants by
-# changing the value of "disable = yes" to "disable = no".
-# - Restart xinetd after changing anything in this file:
-# # /etc/init.d/xinetd restart
-
-service hotwayd
-{
- only_from = localhost
- socket_type = stream
- wait = no
- user = nobody
- port = 1100
- server = /usr/sbin/hotwayd
- #server_args = -p http://proxy:8080 -u proxy_user -q proxy_password
- log_on_success += USERID
- log_on_failure += USERID
- disable = yes
- type = unlisted
-}
diff --git a/net-mail/hotwayd/hotwayd-0.8.4.ebuild b/net-mail/hotwayd/hotwayd-0.8.4.ebuild
deleted file mode 100644
index 8775da3e0b53..000000000000
--- a/net-mail/hotwayd/hotwayd-0.8.4.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="Hotmail to pop3 daemon"
-HOMEPAGE="http://hotwayd.sourceforge.net/"
-SRC_URI="mirror://sourceforge/hotwayd/${P}.tar.bz2"
-RESTRICT="mirror"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
-
-IUSE="smtp"
-
-DEPEND="virtual/inetd
- dev-libs/libxml2
- smtp? ( >=dev-libs/cyrus-sasl-2 )"
-
-hotmail_greed_warning() {
- echo
- ewarn "WARNING:"
- ewarn "Since Hotmail started to charge for WebDAV access, you need a Hotmail Plus"
- ewarn "(or equivalent MSN) account to keep using hotwayd. More info:"
- ewarn "http://www.boolean.ca/hotpop/"
- ewarn "https://sourceforge.net/forum/forum.php?thread_id=1277989&forum_id=80217"
- echo
- ebeep 3
- epause 10
-}
-
-pkg_setup() {
- hotmail_greed_warning
-}
-
-src_install () {
- # The original make install is broken, since it also tries to install
- # the libghttp files. This is not needed, since this library is statically
- # linked into the executable.
- # Lets just copy the (one) file manually...
- dosbin hotwayd
- if use smtp; then
- dosbin hotsmtpd/hotsmtpd
- insinto /etc/xinetd.d
- sed -i -e 's:^disable = no:disable = yes:' hotsmtpd/hotsmtpd.xinetd
- newins hotsmtpd/hotsmtpd.xinetd hotsmtpd
- fi
-
- dodoc AUTHORS NEWS README
-
- insinto /etc/xinetd.d
- newins ${FILESDIR}/${PN}.xinetd ${PN}
-}
-
-pkg_postinst () {
- hotmail_greed_warning
- echo
- elog " By default daemons that use xinetd are not started automatically in gentoo"
- elog " To activate do the following steps: "
- elog " - Edit the file /etc/xinetd.d/hotwayd and change disable "
- elog " from yes to no "
- elog " - Restart xinetd with \`/etc/init.d/xinetd restart\` "
- elog
- if use smtp; then
- elog "You chose to install hotsmtpd, a SMTP proxy for hotmail. Please"
- elog "Configure /etc/xinetd.d/hotsmtpd and restart xinetd to start using it."
- elog
- fi
- elog "Set your e-mail applications to use port 1100 for receiving email."
- if use smtp; then
- elog "Use port 2500 for sending email."
- fi
-}
diff --git a/net-mail/hotwayd/metadata.xml b/net-mail/hotwayd/metadata.xml
deleted file mode 100644
index 7ed5da265af3..000000000000
--- a/net-mail/hotwayd/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <use>
- <flag name="smtp">Build SMTP proxy (hotsmtpd)</flag>
- </use>
- <upstream>
- <remote-id type="sourceforge">hotwayd</remote-id>
- </upstream>
-</pkgmetadata>