summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/mhonarc')
-rw-r--r--net-mail/mhonarc/ChangeLog6
-rw-r--r--net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild19
2 files changed, 14 insertions, 11 deletions
diff --git a/net-mail/mhonarc/ChangeLog b/net-mail/mhonarc/ChangeLog
index bccce37b6d20..4330970313ea 100644
--- a/net-mail/mhonarc/ChangeLog
+++ b/net-mail/mhonarc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-mail/mhonarc
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/ChangeLog,v 1.25 2012/10/28 14:07:21 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/ChangeLog,v 1.26 2012/11/08 19:30:29 pinkbyte Exp $
+
+ 08 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> mhonarc-2.6.18-r1.ebuild:
+ QA: Change variables order according to skel.ebuild, add missing 'die'
+ statements
28 Oct 2012; Pacho Ramos <pacho@gentoo.org>
-files/mhonarc-2.6.16-list-output-order.patch, -mhonarc-2.6.10.ebuild,
diff --git a/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild b/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild
index 0a6baf3ac800..f2a85273d5da 100644
--- a/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild
+++ b/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild
@@ -1,26 +1,25 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild,v 1.1 2011/03/14 08:31:12 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild,v 1.2 2012/11/08 19:30:29 pinkbyte Exp $
inherit perl-app
-IUSE=""
-
-SRC_URI="http://www.mhonarc.org/release/MHonArc/tar/MHonArc-${PV}.tar.bz2"
-RESTRICT="mirror"
-
DESCRIPTION="Perl Mail-to-HTML Converter"
HOMEPAGE="http://www.mhonarc.org/"
-LICENSE="GPL-2"
+SRC_URI="http://www.mhonarc.org/release/MHonArc/tar/MHonArc-${PV}.tar.bz2"
+LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86"
+IUSE=""
+
+RESTRICT="mirror"
S="${WORKDIR}/${P/mhonarc/MHonArc}"
src_install() {
- sed -e "s|-prefix |-docpath '${D}/usr/share/doc/${PF}' -prefix '${D}'|g" -i Makefile
- sed -e "s|installsitelib|installvendorlib|g" -i install.me
+ sed -e "s|-prefix |-docpath '${D}/usr/share/doc/${PF}' -prefix '${D}'|g" -i Makefile || die 'sed on Makefile failed'
+ sed -e "s|installsitelib|installvendorlib|g" -i install.me || die 'sed on install.me failed'
perl-module_src_install
prepalldocs
}