summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2005-05-31 17:25:28 +0000
committerAndrej Kacian <ticho@gentoo.org>2005-05-31 17:25:28 +0000
commita8c6445f2e6ea3114dc47af5ee403d55d568c5a3 (patch)
tree70edc7275bcf8e016722942066c10ab33eaad7ea /net-mail/hotwayd/hotwayd-0.8.ebuild
parentremove dev-lisp/sbcl:callbacks (diff)
downloadgentoo-2-a8c6445f2e6ea3114dc47af5ee403d55d568c5a3.tar.gz
gentoo-2-a8c6445f2e6ea3114dc47af5ee403d55d568c5a3.tar.bz2
gentoo-2-a8c6445f2e6ea3114dc47af5ee403d55d568c5a3.zip
Warn about paid account need, bug #90983. Removed old ebuilds. Marked 0.8.2-r2 stable on x86.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-mail/hotwayd/hotwayd-0.8.ebuild')
-rw-r--r--net-mail/hotwayd/hotwayd-0.8.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/net-mail/hotwayd/hotwayd-0.8.ebuild b/net-mail/hotwayd/hotwayd-0.8.ebuild
deleted file mode 100644
index d66a17a00d59..000000000000
--- a/net-mail/hotwayd/hotwayd-0.8.ebuild
+++ /dev/null
@@ -1,58 +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.ebuild,v 1.9 2005/01/14 20:16:04 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"
-
-IUSE=""
-
-DEPEND="virtual/inetd
- dev-libs/libxml2"
-
-src_compile() {
- epatch ${FILESDIR}/${PN}-${PV%.*}-amd64.patch || die "epatch ${PN}-${PV%.*}-amd64.patch failed"
- econf || die "econf failed"
- emake || die "emake failed"
-}
-
-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
-
- dodoc AUTHORS NEWS README
-
- insinto /etc/xinetd.d
- newins ${FILESDIR}/${PN}.xinetd ${PN}
-}
-
-pkg_postinst () {
- einfo ""
- einfo " By default daemons that use xinetd are not started "
- einfo " 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 " - Add the following line to /etc/services: "
- einfo " hotwayd 110/tcp "
- einfo " - Note: if you already have a daemon serving port 110 (the "
- einfo " default pop3 port); then change the port number to something "
- einfo " else; also change the port number in hotwayd "
- einfo " - If you already had xinetd up and running, restart with "
- einfo " # /etc/init.d/xinetd restart "
- einfo " or "
- einfo " If the emerge also pulled in the xinetd package for you, do "
- einfo " # rc-update add xinetd default "
- einfo " # /etc/init.d/xinetd start "
- einfo ""
-}