summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-12-16 20:58:06 +0000
committerTim Harder <radhermit@gentoo.org>2012-12-16 20:58:06 +0000
commite9a2be19405f10fc5b09ced159261a1b7e696092 (patch)
tree00d2006eaa6b1b86bb60ed17f1715a24340fad22 /net-mail/fetchmail
parentAdd a python-r1-ized revision of pygobject-3.2.2. Drop old. (diff)
downloadgentoo-2-e9a2be19405f10fc5b09ced159261a1b7e696092.tar.gz
gentoo-2-e9a2be19405f10fc5b09ced159261a1b7e696092.tar.bz2
gentoo-2-e9a2be19405f10fc5b09ced159261a1b7e696092.zip
Remove old.
(Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-mail/fetchmail')
-rw-r--r--net-mail/fetchmail/ChangeLog7
-rw-r--r--net-mail/fetchmail/fetchmail-6.3.21.ebuild98
-rw-r--r--net-mail/fetchmail/files/conf.d-fetchmail8
-rw-r--r--net-mail/fetchmail/files/fetchmail-gss_c_nt_hostbased_service.patch21
-rw-r--r--net-mail/fetchmail/files/fetchmail.new33
5 files changed, 6 insertions, 161 deletions
diff --git a/net-mail/fetchmail/ChangeLog b/net-mail/fetchmail/ChangeLog
index b16097657885..4c799e4771af 100644
--- a/net-mail/fetchmail/ChangeLog
+++ b/net-mail/fetchmail/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/fetchmail
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.235 2012/12/16 20:55:51 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.236 2012/12/16 20:58:06 radhermit Exp $
+
+ 16 Dec 2012; Tim Harder <radhermit@gentoo.org> -fetchmail-6.3.21.ebuild,
+ -files/conf.d-fetchmail, -files/fetchmail.new,
+ -files/fetchmail-gss_c_nt_hostbased_service.patch:
+ Remove old.
*fetchmail-6.3.23 (16 Dec 2012)
diff --git a/net-mail/fetchmail/fetchmail-6.3.21.ebuild b/net-mail/fetchmail/fetchmail-6.3.21.ebuild
deleted file mode 100644
index cd39642d177f..000000000000
--- a/net-mail/fetchmail/fetchmail-6.3.21.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.21.ebuild,v 1.9 2012/08/30 17:32:34 radhermit Exp $
-
-EAPI=3
-
-PYTHON_DEPEND="tk? 2"
-PYTHON_USE_WITH_OPT="tk"
-PYTHON_USE_WITH="tk"
-
-inherit python eutils autotools user
-
-DESCRIPTION="the legendary remote-mail retrieval and forwarding utility"
-HOMEPAGE="http://fetchmail.berlios.de"
-SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2 public-domain"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="ssl nls kerberos hesiod tk socks"
-
-RDEPEND="hesiod? ( net-dns/hesiod )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- kerberos? ( virtual/krb5 >=dev-libs/openssl-0.9.6 )
- nls? ( virtual/libintl )
- !elibc_glibc? ( sys-libs/e2fsprogs-libs )
- socks? ( net-proxy/dante )"
-DEPEND="${RDEPEND}
- sys-devel/flex
- nls? ( sys-devel/gettext )"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
- if use tk; then
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-gss_c_nt_hostbased_service.patch"
- eautoreconf
- # dont compile during src_install
- : > "${S}"/py-compile
-}
-
-src_configure() {
- if use tk ; then
- export PYTHON=$(PYTHON -a )
- else
- export PYTHON=:
- fi
- econf \
- --enable-RPA \
- --enable-NTLM \
- --enable-SDPS \
- $(use_enable nls) \
- $(use_with ssl ssl "${EPREFIX}/usr") \
- $(use kerberos && echo "--with-ssl=${EPREFIX}/usr" ) \
- $(use_with kerberos gssapi) \
- $(use_with kerberos kerberos5) \
- $(use_with hesiod) \
- $(use_with socks)
-}
-
-src_install() {
- # fetchmail's homedir (holds fetchmail's .fetchids)
- keepdir /var/lib/${PN} || die
- fowners ${PN}:${PN} /var/lib/${PN} || die
- fperms 700 /var/lib/${PN} || die
-
- emake DESTDIR="${D}" install || die
-
- dohtml *.html
-
- dodoc FAQ FEATURES NEWS NOTES README README.NTLM README.SSL* TODO || die
-
- newinitd "${FILESDIR}"/fetchmail.initd fetchmail || die
- newconfd "${FILESDIR}"/fetchmail.confd fetchmail || die
-
- docinto contrib
- local f
- for f in contrib/* ; do
- [ -f "${f}" ] && dodoc "${f}"
- done
-}
-
-pkg_postinst() {
- use tk && python_mod_optimize fetchmailconf.py
-
- elog "Please see /etc/conf.d/fetchmail if you want to adjust"
- elog "the polling delay used by the fetchmail init script."
-}
-
-pkg_postrm() {
- use tk && python_mod_cleanup fetchmailconf.py
-}
diff --git a/net-mail/fetchmail/files/conf.d-fetchmail b/net-mail/fetchmail/files/conf.d-fetchmail
deleted file mode 100644
index 1cf36a869617..000000000000
--- a/net-mail/fetchmail/files/conf.d-fetchmail
+++ /dev/null
@@ -1,8 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/files/conf.d-fetchmail,v 1.3 2004/07/14 23:50:30 agriffis Exp $
-
-# Polling frequency in seconds
-# (fetchmail will daemonize and check for new mail at this interval)
-polling_period="60"
-
diff --git a/net-mail/fetchmail/files/fetchmail-gss_c_nt_hostbased_service.patch b/net-mail/fetchmail/files/fetchmail-gss_c_nt_hostbased_service.patch
deleted file mode 100644
index 914642ace596..000000000000
--- a/net-mail/fetchmail/files/fetchmail-gss_c_nt_hostbased_service.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Gentoo bug #389347
---- configure.ac.orig 2011-08-21 13:35:05.000000000 +0000
-+++ configure.ac 2011-11-06 19:46:07.000000000 +0000
-@@ -893,11 +893,12 @@
- CPPFLAGS="$CPPFLAGS -I$with_gssapi/include"
- fi
- AC_CHECK_HEADERS(gss.h gssapi.h gssapi/gssapi.h gssapi/gssapi_generic.h)
-- if test "$ac_cv_header_gssapi_h" = "yes"; then
-- AC_EGREP_HEADER(GSS_C_NT_HOSTBASED_SERVICE, gssapi.h, AC_DEFINE(HAVE_GSS_C_NT_HOSTBASED_SERVICE,1,Define if you have MIT kerberos))
-- else
-- AC_EGREP_HEADER(GSS_C_NT_HOSTBASED_SERVICE, gssapi/gssapi.h, AC_DEFINE(HAVE_GSS_C_NT_HOSTBASED_SERVICE))
-- fi
-+ AC_EGREP_CPP(hostbased_service_gss_nt_yes, gssapi.h,
-+ [#include <gssapi.h>
-+ #ifdef GSS_C_NT_HOSTBASED_SERVICE
-+ hostbased_service_gss_nt_yes
-+ #endif],
-+ AC_DEFINE(HAVE_GSS_C_NT_HOSTBASED_SERVICE,1,Define if your GSSAPI implemantation defines GSS_C_NT_HOSTBASED_SERVICE))
- fi])
-
- dnl ,------------------------------------------------------------------
diff --git a/net-mail/fetchmail/files/fetchmail.new b/net-mail/fetchmail/files/fetchmail.new
deleted file mode 100644
index d856d40e6ba3..000000000000
--- a/net-mail/fetchmail/files/fetchmail.new
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/sbin/runscript
-
-pidfile=/var/run/fetchmail/fetchmail.pid
-
-depend() {
- need net
- use mta
-}
-
-checkconfig() {
- if [ ! -f /etc/fetchmailrc ]; then
- eerror "Configuration file /etc/fetchmailrc not found"
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
-
- ebegin "Starting fetchmail"
- start-stop-daemon --start --quiet \
- --user fetchmail --exec /usr/bin/fetchmail \
- -- -d ${polling_period} -f /etc/fetchmailrc \
- --pidfile ${pidfile} -i /var/lib/fetchmail/.fetchids
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping fetchmail"
- start-stop-daemon --stop --quiet --pidfile ${pidfile}
- eend ${?}
-}
-