summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-05-05 23:23:05 +0000
committerMike Frysinger <vapier@gentoo.org>2013-05-05 23:23:05 +0000
commit468ce938b5b83a8c8b48c67570941b4688d0d1c7 (patch)
treead0460e2fc65eb0807f656fbe198417ebcf4ffa3 /app-shells/bashdb
parentReplacing AM_CONFIG_HEADER by AC_CONFIG_HEADERS in configure.ac to support sy... (diff)
downloadgentoo-2-468ce938b5b83a8c8b48c67570941b4688d0d1c7.tar.gz
gentoo-2-468ce938b5b83a8c8b48c67570941b4688d0d1c7.tar.bz2
gentoo-2-468ce938b5b83a8c8b48c67570941b4688d0d1c7.zip
Skip running texinfo tools as we do not install the output #468044 by Jason Mours.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'app-shells/bashdb')
-rw-r--r--app-shells/bashdb/ChangeLog8
-rw-r--r--app-shells/bashdb/bashdb-4.2.0.8.ebuild12
2 files changed, 13 insertions, 7 deletions
diff --git a/app-shells/bashdb/ChangeLog b/app-shells/bashdb/ChangeLog
index 7dee1057834f..5314ff33737a 100644
--- a/app-shells/bashdb/ChangeLog
+++ b/app-shells/bashdb/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-shells/bashdb
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bashdb/ChangeLog,v 1.8 2011/08/11 03:34:05 vapier Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bashdb/ChangeLog,v 1.9 2013/05/05 23:23:05 vapier Exp $
+
+ 05 May 2013; Mike Frysinger <vapier@gentoo.org> bashdb-4.2.0.8.ebuild:
+ Skip running texinfo tools as we do not install the output #468044 by Jason
+ Mours.
*bashdb-4.2.0.8 (11 Aug 2011)
diff --git a/app-shells/bashdb/bashdb-4.2.0.8.ebuild b/app-shells/bashdb/bashdb-4.2.0.8.ebuild
index d6fc381002d3..fc0d89f248c2 100644
--- a/app-shells/bashdb/bashdb-4.2.0.8.ebuild
+++ b/app-shells/bashdb/bashdb-4.2.0.8.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bashdb/bashdb-4.2.0.8.ebuild,v 1.1 2011/08/11 03:34:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bashdb/bashdb-4.2.0.8.ebuild,v 1.2 2013/05/05 23:23:05 vapier Exp $
+
+EAPI="4"
MY_P="${PN}-${PV:0:3}-${PV:4}"
DESCRIPTION="bash source code debugging"
@@ -16,7 +18,7 @@ DEPEND="!>=app-shells/bash-${PV:0:1}.$((${PV:2:1}+1))"
S=${WORKDIR}/${MY_P}
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc AUTHORS NEWS README THANKS TODO
+src_prepare() {
+ # We don't install this, so don't bother building it. #468044
+ sed -i 's:texi2html:true:' doc/Makefile.in || die
}