summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEray Aslan <eras@gentoo.org>2010-12-05 18:38:11 +0000
committerEray Aslan <eras@gentoo.org>2010-12-05 18:38:11 +0000
commit9e765833663dcdd450033fb40a206971575c41a2 (patch)
tree67ef0934e874c46671ec56b075a5043b0f46c6b3 /net-mail/dovecot/files
parentalpha/sparc stable wrt #345923 (diff)
downloadgentoo-2-9e765833663dcdd450033fb40a206971575c41a2.tar.gz
gentoo-2-9e765833663dcdd450033fb40a206971575c41a2.tar.bz2
gentoo-2-9e765833663dcdd450033fb40a206971575c41a2.zip
Remove old versions and unneeded patches.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/dovecot/files')
-rw-r--r--net-mail/dovecot/files/dovecot-2.0_rc4-asneeded.patch26
-rw-r--r--net-mail/dovecot/files/dovecot.init33
2 files changed, 0 insertions, 59 deletions
diff --git a/net-mail/dovecot/files/dovecot-2.0_rc4-asneeded.patch b/net-mail/dovecot/files/dovecot-2.0_rc4-asneeded.patch
deleted file mode 100644
index cef5812f9b08..000000000000
--- a/net-mail/dovecot/files/dovecot-2.0_rc4-asneeded.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- src/doveadm/Makefile.in.orig 2010-08-04 17:34:24.000000000 +0000
-+++ src/doveadm/Makefile.in 2010-08-05 07:38:30.000000000 +0000
-@@ -293,8 +293,9 @@
- $(unused_objects)
-
- doveadm_LDADD = \
-- $(libs) $(AUTH_LIBS) \
-+ $(libs) \
- $(cmd_pw_libs) \
-+ $(AUTH_LIBS) \
- $(LIBDOVECOT) \
- $(MODULE_LIBS)
-
---- src/doveadm/Makefile.am.orig 2010-07-30 14:04:48.000000000 +0000
-+++ src/doveadm/Makefile.am 2010-08-05 07:38:30.000000000 +0000
-@@ -38,8 +38,9 @@
- $(unused_objects)
-
- doveadm_LDADD = \
-- $(libs) $(AUTH_LIBS) \
-+ $(libs) \
- $(cmd_pw_libs) \
-+ $(AUTH_LIBS) \
- $(LIBDOVECOT) \
- $(MODULE_LIBS)
- doveadm_DEPENDENCIES = \
diff --git a/net-mail/dovecot/files/dovecot.init b/net-mail/dovecot/files/dovecot.init
deleted file mode 100644
index 4bd5c5014e4f..000000000000
--- a/net-mail/dovecot/files/dovecot.init
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/files/dovecot.init,v 1.6 2008/04/21 17:07:52 wschlich Exp $
-
-opts="reload"
-
-depend() {
- need localmount net
- after bootmisc ldap mysql ntp-client ntpd postgresql saslauthd slapd
- use logger
-}
-
-start() {
- ebegin "Starting dovecot"
- start-stop-daemon --start --exec /usr/sbin/dovecot \
- --pidfile /var/run/dovecot/master.pid
- eend $?
-}
-
-stop() {
- ebegin "Stopping dovecot"
- start-stop-daemon --stop --exec /usr/sbin/dovecot \
- --pidfile /var/run/dovecot/master.pid
- eend $?
-}
-
-reload() {
- ebegin "Reloading dovecot configs and restarting auth/login processes"
- start-stop-daemon --stop --oknodo --exec /usr/sbin/dovecot \
- --pidfile /var/run/dovecot/master.pid --signal HUP
- eend $?
-}