Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/mhonarc: mhonarc-2.6.18-r2.ebuild ChangeLog
Date: Tue, 03 Sep 2013 15:09:03
Message-Id: 20130903150859.77D6F2004C@flycatcher.gentoo.org
1 idella4 13/09/03 15:08:59
2
3 Modified: ChangeLog
4 Added: mhonarc-2.6.18-r2.ebuild
5 Log:
6 revbump -> EAPI 5, add IUSE examples, fix src_install
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.32 net-mail/mhonarc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mhonarc/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mhonarc/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mhonarc/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/mhonarc/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 27 Dec 2012 11:48:33 -0000 1.31
24 +++ ChangeLog 3 Sep 2013 15:08:59 -0000 1.32
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/mhonarc
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/ChangeLog,v 1.31 2012/12/27 11:48:33 kensington Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/ChangeLog,v 1.32 2013/09/03 15:08:59 idella4 Exp $
31 +
32 +*mhonarc-2.6.18-r2 (03 Sep 2013)
33 +
34 + 03 Sep 2013; Ian Delaney <idella4@g.o> +mhonarc-2.6.18-r2.ebuild:
35 + revbump -> EAPI 5, add IUSE examples, fix src_install
36
37 27 Dec 2012; Michael Palimaka <kensington@g.o> -mhonarc-2.6.18.ebuild:
38 Remove old.
39
40
41
42 1.1 net-mail/mhonarc/mhonarc-2.6.18-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mhonarc/mhonarc-2.6.18-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mhonarc/mhonarc-2.6.18-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mhonarc-2.6.18-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/mhonarc-2.6.18-r2.ebuild,v 1.1 2013/09/03 15:08:59 idella4 Exp $
52
53 EAPI=5
54
55 inherit perl-module
56
57 DESCRIPTION="Perl Mail-to-HTML Converter"
58 HOMEPAGE="http://www.mhonarc.org/"
59 SRC_URI="http://www.mhonarc.org/release/MHonArc/tar/MHonArc-${PV}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~mips ~ppc ~x86"
64 # Warrants IUSE examples, and here it is + ? IUSE doc; see also extras folder with html docs
65 IUSE="examples"
66
67 RESTRICT="mirror"
68
69 S="${WORKDIR}/${P/mhonarc/MHonArc}"
70 mydoc="README.txt"
71
72 src_install() {
73 sed -e "s|-prefix |-docpath '${D}/usr/share/doc/${PF}/html' -prefix '${D}'|g" -i Makefile || die 'sed on Makefile failed'
74 sed -e "s|installsitelib|installvendorlib|g" -i install.me || die 'sed on install.me failed'
75 perl-module_src_install
76 if use examples; then
77 docompress -x usr/share/doc/${PF}/examples
78 insinto usr/share/doc/${PF}/
79 doins -r examples/
80 fi
81 }