diff options
author | Vladimir Smirnov <civil@gentoo.org> | 2014-02-21 09:04:06 +0000 |
---|---|---|
committer | Vladimir Smirnov <civil@gentoo.org> | 2014-02-21 09:04:06 +0000 |
commit | 1d3b53846247789f6d21a0027a7967d8fe6bb3da (patch) | |
tree | 1013e9d5bcdd5bcc7aca9f7c5376bc1c1fccb4fe /mail-filter | |
parent | Add myself as a maintainer. (diff) | |
download | gentoo-2-1d3b53846247789f6d21a0027a7967d8fe6bb3da.tar.gz gentoo-2-1d3b53846247789f6d21a0027a7967d8fe6bb3da.tar.bz2 gentoo-2-1d3b53846247789f6d21a0027a7967d8fe6bb3da.zip |
dovecot_deleted_to_trash-0.5-r1 is now compatible with dovecot-2.2
Thanks to slepnoga.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xA832680F)
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/dovecot_deleted_to_trash/ChangeLog | 11 | ||||
-rw-r--r-- | mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.5-r1.ebuild | 41 |
2 files changed, 50 insertions, 2 deletions
diff --git a/mail-filter/dovecot_deleted_to_trash/ChangeLog b/mail-filter/dovecot_deleted_to_trash/ChangeLog index a7b102bdbba4..d6f25ef67c0e 100644 --- a/mail-filter/dovecot_deleted_to_trash/ChangeLog +++ b/mail-filter/dovecot_deleted_to_trash/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for mail-filter/dovecot_deleted_to_trash -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog,v 1.9 2013/10/27 12:19:26 maksbotan Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog,v 1.10 2014/02/21 09:04:06 civil Exp $ + +*dovecot_deleted_to_trash-0.5-r1 (21 Feb 2014) + + 21 Feb 2014; Vladimir Smirnov <civil@gentoo.org> + +dovecot_deleted_to_trash-0.5-r1.ebuild: + dovecot_deleted_to_trash-0.5-r1 is now compatible with dovecot-2.2 Thanks to + slepnoga. 27 Oct 2013; Maxim Koltsov <maksbotan@gentoo.org> +files/fix_names_and_destdir.patch: diff --git a/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.5-r1.ebuild b/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.5-r1.ebuild new file mode 100644 index 000000000000..dc9e213ac118 --- /dev/null +++ b/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.5-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.5-r1.ebuild,v 1.1 2014/02/21 09:04:06 civil Exp $ + +EAPI=5 + +inherit toolchain-funcs base + +DESCRIPTION="Deleted to trash IMAP plugin for Dovecot" +HOMEPAGE="https://github.com/lexbrugman/dovecot_deleted_to_trash" +SRC_URI="http://rion-overlay.googlecode.com/files/dovecot_deleted_to_trash-0.5.tar.bz2" + +LICENSE="ZLIB" +KEYWORDS="~amd64 ~x86" +SLOT="0" + +IUSE="" +RDEPEND="=net-mail/dovecot-2.2* + !!<net-mail/dovecot-2.2.0 + !!<=mail-filter/dovecot_deleted_to_trash-0.3 + " + +DEPEND="${RDEPEND} + app-arch/unzip + " + +PATCHES=( "${FILESDIR}"/fix_names_and_destdir.patch ) + +#S="${WORKDIR}" + +src_compile() { + tc-export CC + base_src_compile +} + +src_install() { + base_src_install + + insinto /etc/dovecot/conf.d + doins "${FILESDIR}"/29-delete-to-trash.conf +} |