Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-filter/dovecot_deleted_to_trash: ChangeLog dovecot_deleted_to_trash-0.3.ebuild
Date: Tue, 27 Nov 2012 07:30:56
Message-Id: 20121127073044.5E91120C65@flycatcher.gentoo.org
1 pinkbyte 12/11/27 07:30:44
2
3 Modified: ChangeLog dovecot_deleted_to_trash-0.3.ebuild
4 Log:
5 Set proper path for libs, reorganize patch into sed expressions, wrt bug #444840. Thanks to Agostino Sarubbo and Andreis Vinogradovs
6
7 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.4 mail-filter/dovecot_deleted_to_trash/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 10 Nov 2012 13:51:57 -0000 1.3
23 +++ ChangeLog 27 Nov 2012 07:30:44 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for mail-filter/dovecot_deleted_to_trash
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog,v 1.3 2012/11/10 13:51:57 blueness Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/ChangeLog,v 1.4 2012/11/27 07:30:44 pinkbyte Exp $
29 +
30 + 27 Nov 2012; Sergey Popov <pinkbyte@g.o>
31 + dovecot_deleted_to_trash-0.3.ebuild, -files/fix_names_and_destdir.patch:
32 + Set proper path for libs, reorganize patch into sed expressions, wrt bug
33 + #444840. Thanks to Agostino Sarubbo and Andreis Vinogradovs
34
35 10 Nov 2012; Anthony G. Basile <blueness@g.o>
36 dovecot_deleted_to_trash-0.3.ebuild:
37
38
39
40 1.4 mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.3.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.3.ebuild?rev=1.4&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.3.ebuild?rev=1.4&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.3.ebuild?r1=1.3&r2=1.4
45
46 Index: dovecot_deleted_to_trash-0.3.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.3.ebuild,v
49 retrieving revision 1.3
50 retrieving revision 1.4
51 diff -u -r1.3 -r1.4
52 --- dovecot_deleted_to_trash-0.3.ebuild 10 Nov 2012 13:51:57 -0000 1.3
53 +++ dovecot_deleted_to_trash-0.3.ebuild 27 Nov 2012 07:30:44 -0000 1.4
54 @@ -1,10 +1,10 @@
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.3.ebuild,v 1.3 2012/11/10 13:51:57 blueness Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/dovecot_deleted_to_trash/dovecot_deleted_to_trash-0.3.ebuild,v 1.4 2012/11/27 07:30:44 pinkbyte Exp $
59
60 EAPI=4
61
62 -inherit toolchain-funcs base
63 +inherit base multilib toolchain-funcs
64
65 DESCRIPTION="Deleted to trash IMAP plugin for Dovecot"
66 HOMEPAGE="http://wiki.dovecot.org/Plugins/deleted-to-trash"
67 @@ -17,10 +17,16 @@
68 IUSE=""
69 RDEPEND="=net-mail/dovecot-2.0*"
70 DEPEND="${RDEPEND}"
71 -PATCHES=( "${FILESDIR}"/fix_names_and_destdir.patch )
72
73 S="${WORKDIR}"
74
75 +src_prepare() {
76 + sed -e "/DOVECOT_IMAP_PLUGIN_PATH/s/lib/$(get_libdir)/g" \
77 + -e "/DOVECOT_IMAP_PLUGIN_PATH/s/imap//" \
78 + -e "/PLUGIN_NAME/s/lib/lib99/" -i Makefile || die 'sed on Makefile failed'
79 + base_src_prepare
80 +}
81 +
82 src_compile() {
83 tc-export CC
84 base_src_compile