diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-03-23 18:37:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-03-23 18:37:53 +0000 |
commit | 17998adce576bf804ae405c16d7adbff170c162a (patch) | |
tree | 929e7ee050532cbbb32e0b0aa75ca03e1222b099 /sys-apps/texinfo | |
parent | Stable on ppc wrt bug 207381 (diff) | |
download | gentoo-2-17998adce576bf804ae405c16d7adbff170c162a.tar.gz gentoo-2-17998adce576bf804ae405c16d7adbff170c162a.tar.bz2 gentoo-2-17998adce576bf804ae405c16d7adbff170c162a.zip |
Fix from upstream for test failure when tex isnt installed #195313 by Ryan Hill.
(Portage version: 2.2_pre5)
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r-- | sys-apps/texinfo/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/texinfo/files/texinfo-4.11-test-tex.patch | 24 | ||||
-rw-r--r-- | sys-apps/texinfo/texinfo-4.11-r1.ebuild | 5 |
3 files changed, 34 insertions, 4 deletions
diff --git a/sys-apps/texinfo/ChangeLog b/sys-apps/texinfo/ChangeLog index 5b839207e30b..ed5c1951855c 100644 --- a/sys-apps/texinfo/ChangeLog +++ b/sys-apps/texinfo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/texinfo -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.88 2007/11/12 07:25:39 vapier Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.89 2008/03/23 18:37:52 vapier Exp $ + + 23 Mar 2008; Mike Frysinger <vapier@gentoo.org> + +files/texinfo-4.11-test-tex.patch, texinfo-4.11-r1.ebuild: + Fix from upstream for test failure when tex isnt installed #195313 by Ryan + Hill. *texinfo-4.11-r1 (12 Nov 2007) diff --git a/sys-apps/texinfo/files/texinfo-4.11-test-tex.patch b/sys-apps/texinfo/files/texinfo-4.11-test-tex.patch new file mode 100644 index 000000000000..735797120281 --- /dev/null +++ b/sys-apps/texinfo/files/texinfo-4.11-test-tex.patch @@ -0,0 +1,24 @@ +http://bugs.gentoo.org/195313 + +--- texinfo-4.11/util/dvipdf.test ++++ texinfo-4.11/util/dvipdf.test +@@ -16,6 +16,8 @@ + # You should have received a copy of the GNU General Public License + # along with this program. If not, see <http://www.gnu.org/licenses/>. + ++required='tex' ++ + . ./defs || exit 1 + + set -e +--- texinfo-4.11/util/texi2dvi.test ++++ texinfo-4.11/util/texi2dvi.test +@@ -16,6 +16,8 @@ + # You should have received a copy of the GNU General Public License + # along with this program. If not, see <http://www.gnu.org/licenses/>. + ++required='tex' ++ + . ./defs || exit 1 + + set -e diff --git a/sys-apps/texinfo/texinfo-4.11-r1.ebuild b/sys-apps/texinfo/texinfo-4.11-r1.ebuild index ac23106d7f4b..33b846ed44fb 100644 --- a/sys-apps/texinfo/texinfo-4.11-r1.ebuild +++ b/sys-apps/texinfo/texinfo-4.11-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.11-r1.ebuild,v 1.1 2007/11/12 07:25:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.11-r1.ebuild,v 1.2 2008/03/23 18:37:52 vapier Exp $ inherit flag-o-matic @@ -25,6 +25,7 @@ src_unpack() { # pull in ctype.h for misc string function prototypes sed -i '1i#include <ctype.h>' system.h epatch "${FILESDIR}"/${P}-dir-entry.patch #198545 + epatch "${FILESDIR}"/${P}-test-tex.patch #195313 # FreeBSD requires install-sh, but usptream don't have it marked # exec, #195076 |