summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Volynets <iluxa@gentoo.org>2011-03-14 08:31:12 +0000
committerIlya Volynets <iluxa@gentoo.org>2011-03-14 08:31:12 +0000
commit87a74f8bc27708c1062994bc52c7c571b06be3ca (patch)
tree4ea18338b752ddbd762d90cda86d4365acc9ed0b /net-mail
parentUse the global neXt USE flag instead of nextaw. (diff)
downloadgentoo-2-87a74f8bc27708c1062994bc52c7c571b06be3ca.tar.gz
gentoo-2-87a74f8bc27708c1062994bc52c7c571b06be3ca.tar.bz2
gentoo-2-87a74f8bc27708c1062994bc52c7c571b06be3ca.zip
Install perl modules into vendor_dir rather then site_dir
bug #295780 (Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mhonarc/ChangeLog9
-rw-r--r--net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild26
2 files changed, 34 insertions, 1 deletions
diff --git a/net-mail/mhonarc/ChangeLog b/net-mail/mhonarc/ChangeLog
index 5da7c0127a81..3b0787af1710 100644
--- a/net-mail/mhonarc/ChangeLog
+++ b/net-mail/mhonarc/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for net-mail/mhonarc
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/ChangeLog,v 1.22 2011/03/05 16:47:05 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mhonarc/ChangeLog,v 1.23 2011/03/14 08:31:12 iluxa Exp $
+
+*mhonarc-2.6.18-r1 (14 Mar 2011)
+
+ 14 Mar 2011; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+ +mhonarc-2.6.18-r1.ebuild:
+ Install perl modules into vendor_dir rather then site_dir
+ bug #295780
05 Mar 2011; Raúl Porcel <armin76@gentoo.org> mhonarc-2.6.18.ebuild:
sparc stable wrt #349563
diff --git a/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild b/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild
new file mode 100644
index 000000000000..0a6baf3ac800
--- /dev/null
+++ b/net-mail/mhonarc/mhonarc-2.6.18-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2011 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 $
+
+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"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86"
+
+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
+ perl-module_src_install
+ prepalldocs
+}