Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mhonarc-gentoo/
Date: Thu, 07 Jul 2016 19:48:49
Message-Id: 1467920820.cb1e3a55ca15156b21b726b197caecd9f83c274a.wizardedit@gentoo
1 commit: cb1e3a55ca15156b21b726b197caecd9f83c274a
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 7 19:43:01 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 7 19:47:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb1e3a55
7
8 net-mail/mhonarc-gentoo: bump to EAPI 6, add maintainer-needed
9
10 Package-Manager: portage-2.2.28
11
12 net-mail/mhonarc-gentoo/metadata.xml | 1 +
13 .../mhonarc-gentoo/mhonarc-gentoo-2.6.18-r2.ebuild | 29 ++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/net-mail/mhonarc-gentoo/metadata.xml b/net-mail/mhonarc-gentoo/metadata.xml
17 index 097975e..6f49eba 100644
18 --- a/net-mail/mhonarc-gentoo/metadata.xml
19 +++ b/net-mail/mhonarc-gentoo/metadata.xml
20 @@ -1,4 +1,5 @@
21 <?xml version="1.0" encoding="UTF-8"?>
22 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
23 <pkgmetadata>
24 +<!-- maintainer-needed -->
25 </pkgmetadata>
26
27 diff --git a/net-mail/mhonarc-gentoo/mhonarc-gentoo-2.6.18-r2.ebuild b/net-mail/mhonarc-gentoo/mhonarc-gentoo-2.6.18-r2.ebuild
28 new file mode 100644
29 index 0000000..8af0c4f
30 --- /dev/null
31 +++ b/net-mail/mhonarc-gentoo/mhonarc-gentoo-2.6.18-r2.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=6
38 +
39 +inherit perl-module
40 +
41 +DESCRIPTION="Perl Mail-to-HTML Converter, Gentoo fork"
42 +HOMEPAGE="http://www.mhonarc.org/"
43 +LICENSE="GPL-2"
44 +SRC_URI="http://www.mhonarc.org/release/MHonArc/tar/MHonArc-${PV}.tar.bz2"
45 +
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +RDEPEND="!net-mail/mhonarc"
50 +
51 +MY_P="${P/mhonarc-gentoo/MHonArc}"
52 +S="${WORKDIR}/${MY_P}"
53 +
54 +PATCHES=( "${FILESDIR}/${P}-archives-gentoo.patch" )
55 +
56 +src_install() {
57 + sed -e "s|-prefix |-docpath '${D}/usr/share/doc/${PF}' -prefix '${D}'|g" -i Makefile || die "sed on Makefile failed"
58 + sed -e "s|installsitelib|installvendorlib|g" -i install.me || die "sed on install.me failed"
59 +
60 + perl-module_src_install
61 +}