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-perl: claws-mail-perl-0.9.17.ebuild ChangeLog
Date: Fri, 08 Jan 2010 21:42:20
Message-Id: E1NTMb3-0005qo-UB@stork.gentoo.org
1 fauli 10/01/08 21:42:17
2
3 Modified: ChangeLog
4 Added: claws-mail-perl-0.9.17.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.38 mail-client/claws-mail-perl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-perl/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-perl/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-perl/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/mail-client/claws-mail-perl/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 18 Oct 2009 23:30:26 -0000 1.37
23 +++ ChangeLog 8 Jan 2010 21:42:17 -0000 1.38
24 @@ -1,6 +1,12 @@
25 # ChangeLog for mail-client/claws-mail-perl
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-perl/ChangeLog,v 1.37 2009/10/18 23:30:26 fauli Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-perl/ChangeLog,v 1.38 2010/01/08 21:42:17 fauli Exp $
30 +
31 +*claws-mail-perl-0.9.17 (08 Jan 2010)
32 +
33 + 08 Jan 2010; Christian Faulhammer <fauli@g.o>
34 + +claws-mail-perl-0.9.17.ebuild:
35 + version bump
36
37 *claws-mail-perl-0.9.16 (18 Oct 2009)
38
39
40
41
42 1.1 mail-client/claws-mail-perl/claws-mail-perl-0.9.17.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-perl/claws-mail-perl-0.9.17.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/claws-mail-perl/claws-mail-perl-0.9.17.ebuild?rev=1.1&content-type=text/plain
46
47 Index: claws-mail-perl-0.9.17.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-perl/claws-mail-perl-0.9.17.ebuild,v 1.1 2010/01/08 21:42:17 fauli Exp $
52
53 MY_P="${PN#claws-mail-}_plugin-${PV}"
54
55 DESCRIPTION="Plugin to use perl to write filtering rules"
56 HOMEPAGE="http://www.claws-mail.org"
57 SRC_URI="http://www.claws-mail.org/downloads/plugins/${MY_P}.tar.gz"
58 LICENSE="GPL-3"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
61 IUSE=""
62 RDEPEND=">=mail-client/claws-mail-3.7.4
63 dev-lang/perl"
64 DEPEND="${RDEPEND}
65 dev-util/pkgconfig"
66
67 S="${WORKDIR}/${MY_P}"
68
69 src_compile() {
70 econf || die
71 emake || die
72
73 pod2man --section=1 --release=${PV} --name=cm_perl cm_perl.pod > cm_perl.1
74
75 cd tools
76 emake || die
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install
81 dodoc AUTHORS ChangeLog NEWS README
82
83 doman cm_perl.1
84
85 cd tools
86 exeinto /usr/lib/claws-mail/tools
87 doexe *.pl
88
89 rm -f "${D}"/usr/lib*/claws-mail/plugins/*.{a,la}
90 }
91
92 pkg_postinst() {
93 echo
94 elog "The documentation for this plugin is contained in a manpage."
95 elog "You can access it with 'man cm_perl'"
96 echo
97 }