Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (fauli)" <fauli@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/claws-mail-attachwarner: ChangeLog claws-mail-attachwarner-0.2.16.ebuild
Date: Wed, 29 Apr 2009 07:03:04
Message-Id: E1Lz3os-0004Xs-8a@stork.gentoo.org
1 fauli 09/04/29 07:03:02
2
3 Modified: ChangeLog
4 Added: claws-mail-attachwarner-0.2.16.ebuild
5 Log:
6 version bump, bug 266782 by microbiolog AT gmail.com
7 (Portage version: 2.1.6.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.31 mail-client/claws-mail-attachwarner/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-attachwarner/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-attachwarner/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-attachwarner/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/mail-client/claws-mail-attachwarner/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 14 Mar 2009 15:42:39 -0000 1.30
23 +++ ChangeLog 29 Apr 2009 07:03:02 -0000 1.31
24 @@ -1,6 +1,12 @@
25 # ChangeLog for mail-client/claws-mail-attachwarner
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-attachwarner/ChangeLog,v 1.30 2009/03/14 15:42:39 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-attachwarner/ChangeLog,v 1.31 2009/04/29 07:03:02 fauli Exp $
29 +
30 +*claws-mail-attachwarner-0.2.16 (29 Apr 2009)
31 +
32 + 29 Apr 2009; Christian Faulhammer <fauli@g.o>
33 + +claws-mail-attachwarner-0.2.16.ebuild:
34 + version bump, bug 266782 by microbiolog AT gmail.com
35
36 14 Mar 2009; nixnut <nixnut@g.o> ChangeLog:
37 ~ppc'd
38
39
40
41 1.1 mail-client/claws-mail-attachwarner/claws-mail-attachwarner-0.2.16.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-attachwarner/claws-mail-attachwarner-0.2.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-attachwarner/claws-mail-attachwarner-0.2.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: claws-mail-attachwarner-0.2.16.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-attachwarner/claws-mail-attachwarner-0.2.16.ebuild,v 1.1 2009/04/29 07:03:02 fauli Exp $
51
52 MY_P="${P#claws-mail-}"
53
54 DESCRIPTION="Warn about missing attachment, if it's mentioned in message body."
55 HOMEPAGE="http://www.claws-mail.org/"
56 SRC_URI="http://www.claws-mail.org/downloads/plugins/${MY_P}.tar.gz"
57 LICENSE="GPL-3"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86"
60 IUSE="nls"
61 RDEPEND=">=mail-client/claws-mail-3.7.1
62 nls? ( >=sys-devel/gettext-0.12.1 )"
63 DEPEND="${RDEPEND}
64 dev-util/pkgconfig"
65
66 S="${WORKDIR}/${MY_P}"
67
68 src_compile() {
69 econf $(use_enable nls) || die "econf failed"
70 emake || die "emake failed"
71 }
72
73 src_install() {
74 emake DESTDIR="${D}" install || die "make install failed"
75 dodoc ChangeLog README
76
77 # kill useless files
78 rm -f "${D}"/usr/lib*/claws-mail/plugins/*.{a,la}
79 }