summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2006-02-28 01:26:29 +0000
committerAndrej Kacian <ticho@gentoo.org>2006-02-28 01:26:29 +0000
commite70e4f20d4cacc37b6ba969f2abdbbf32034bb12 (patch)
treea392f97b1358c1cbacc62f22000a911473d94b53 /net-mail/hotwayd
parentUse epause instead of sleep. Bug #124323, by Ciaran McCreesh <ciaranm at gent... (diff)
downloadgentoo-2-e70e4f20d4cacc37b6ba969f2abdbbf32034bb12.tar.gz
gentoo-2-e70e4f20d4cacc37b6ba969f2abdbbf32034bb12.tar.bz2
gentoo-2-e70e4f20d4cacc37b6ba969f2abdbbf32034bb12.zip
Use epause instead of sleep. Bug #124321, by Ciaran McCreesh <ciaranm at gentoo.org>. Removed old ebuild.
(Portage version: 2.1_pre5-r1)
Diffstat (limited to 'net-mail/hotwayd')
-rw-r--r--net-mail/hotwayd/ChangeLog9
-rw-r--r--net-mail/hotwayd/files/digest-hotwayd-0.8.2-r21
-rw-r--r--net-mail/hotwayd/hotwayd-0.8.2-r2.ebuild74
-rw-r--r--net-mail/hotwayd/hotwayd-0.8.4.ebuild6
4 files changed, 10 insertions, 80 deletions
diff --git a/net-mail/hotwayd/ChangeLog b/net-mail/hotwayd/ChangeLog
index a02cf8b4005f..50b534903fc9 100644
--- a/net-mail/hotwayd/ChangeLog
+++ b/net-mail/hotwayd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/hotwayd
-# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/hotwayd/ChangeLog,v 1.20 2005/11/01 07:07:12 ticho Exp $
+# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/hotwayd/ChangeLog,v 1.21 2006/02/28 01:26:29 ticho Exp $
+
+ 28 Feb 2006; Andrej Kacian <ticho@gentoo.org> -hotwayd-0.8.2-r2.ebuild,
+ hotwayd-0.8.4.ebuild:
+ Use epause instead of sleep. Bug #124321, by Ciaran McCreesh <ciaranm at
+ gentoo.org>. Removed old ebuild.
01 Nov 2005; Andrej Kacian <ticho@gentoo.org> hotwayd-0.8.4.ebuild:
Stable on x86.
diff --git a/net-mail/hotwayd/files/digest-hotwayd-0.8.2-r2 b/net-mail/hotwayd/files/digest-hotwayd-0.8.2-r2
deleted file mode 100644
index 22edaa6adc99..000000000000
--- a/net-mail/hotwayd/files/digest-hotwayd-0.8.2-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 0d1e3a691c8d5757a6e67b32745ab2cb hotwayd-0.8.2.tar.bz2 150424
diff --git a/net-mail/hotwayd/hotwayd-0.8.2-r2.ebuild b/net-mail/hotwayd/hotwayd-0.8.2-r2.ebuild
deleted file mode 100644
index 482d94ad0142..000000000000
--- a/net-mail/hotwayd/hotwayd-0.8.2-r2.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/hotwayd/hotwayd-0.8.2-r2.ebuild,v 1.1 2005/05/31 17:25:28 ticho Exp $
-
-inherit eutils
-
-DESCRIPTION="Hotmail to pop3 daemon"
-HOMEPAGE="http://hotwayd.sourceforge.net/"
-SRC_URI="mirror://sourceforge/hotwayd/${P}.tar.bz2"
-RESTRICT="nomirror"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ~amd64 ~ppc ~sparc"
-
-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 "http://sourceforge.net/forum/forum.php?thread_id=1277989&forum_id=80217"
- echo
- ebeep 3
- sleep 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
- einfo " By default daemons that use xinetd are not started automatically in gentoo"
- einfo " To activate do the following steps: "
- einfo " - Edit the file /etc/xinetd.d/hotwayd and change disable "
- einfo " from yes to no "
- einfo " - Restart xinetd with \`/etc/init.d/xinetd restart\` "
- echo
- if use smtp; then
- einfo "You chose to install hotsmtpd, a SMTP proxy for hotmail. Please"
- einfo "Configure /etc/xinetd.d/hotsmtpd and restart xinetd to start using it."
- echo
- fi
- einfo "Set your e-mail applications to use port 1100 for receiving email."
- if use smtp; then
- einfo "Use port 2500 for sending email."
- fi
-}
diff --git a/net-mail/hotwayd/hotwayd-0.8.4.ebuild b/net-mail/hotwayd/hotwayd-0.8.4.ebuild
index 07097a53ac73..bcb35eaa3f36 100644
--- a/net-mail/hotwayd/hotwayd-0.8.4.ebuild
+++ b/net-mail/hotwayd/hotwayd-0.8.4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/hotwayd/hotwayd-0.8.4.ebuild,v 1.2 2005/11/01 07:07:12 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/hotwayd/hotwayd-0.8.4.ebuild,v 1.3 2006/02/28 01:26:29 ticho Exp $
inherit eutils
@@ -27,7 +27,7 @@ hotmail_greed_warning() {
ewarn "http://sourceforge.net/forum/forum.php?thread_id=1277989&forum_id=80217"
echo
ebeep 3
- sleep 10
+ epause 10
}
pkg_setup() {