summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-05-09 18:28:13 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-05-09 18:28:13 +0000
commit878c7a8f866873b142a35e104c3f29a59bd7f518 (patch)
tree894f0dde28af20d6ffde571a932e2c4c6fc3b7c4 /app-text
parentremove masks due to glpk (diff)
downloadgentoo-2-878c7a8f866873b142a35e104c3f29a59bd7f518.tar.gz
gentoo-2-878c7a8f866873b142a35e104c3f29a59bd7f518.tar.bz2
gentoo-2-878c7a8f866873b142a35e104c3f29a59bd7f518.zip
fix build on on platforms without GNU install
(Portage version: 2.2.0_alpha102/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/texi2html/ChangeLog5
-rw-r--r--app-text/texi2html/texi2html-5.0-r1.ebuild8
2 files changed, 11 insertions, 2 deletions
diff --git a/app-text/texi2html/ChangeLog b/app-text/texi2html/ChangeLog
index 315d0ade275c..f421b276bfde 100644
--- a/app-text/texi2html/ChangeLog
+++ b/app-text/texi2html/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/texi2html
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/ChangeLog,v 1.60 2012/05/06 20:52:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/ChangeLog,v 1.61 2012/05/09 18:28:13 aballier Exp $
+
+ 09 May 2012; Alexis Ballier <aballier@gentoo.org> texi2html-5.0-r1.ebuild:
+ fix build on on platforms without GNU install
06 May 2012; Samuli Suominen <ssuominen@gentoo.org> texi2html-5.0-r1.ebuild:
Temporarily restrict testsuite wrt #411523 by Markus Oehme
diff --git a/app-text/texi2html/texi2html-5.0-r1.ebuild b/app-text/texi2html/texi2html-5.0-r1.ebuild
index 71d8adeec85c..b6155d445844 100644
--- a/app-text/texi2html/texi2html-5.0-r1.ebuild
+++ b/app-text/texi2html/texi2html-5.0-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/texi2html-5.0-r1.ebuild,v 1.6 2012/05/06 20:52:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/texi2html-5.0-r1.ebuild,v 1.7 2012/05/09 18:28:13 aballier Exp $
EAPI=4
@@ -25,6 +25,12 @@ DOCS="AUTHORS ChangeLog NEWS README TODO"
RESTRICT="test" #411523
+src_prepare() {
+ # On FreeBSD this script is used instead of GNU install but it comes without
+ # executable pemissions... Fix it!
+ chmod +x install-sh || die
+}
+
src_configure() {
local myconf
use unicode && myconf='--with-external-Unicode-EastAsianWidth'