summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-04-25 02:06:03 +0000
committerMike Frysinger <vapier@gentoo.org>2005-04-25 02:06:03 +0000
commitda390330d545e8d9d10bc3970d673c6f300d7f25 (patch)
treef817494980eee704cc7d26c550eb7bff751db4a9 /sys-apps/texinfo
parentAdd missing openldap dependency (and cleanup a touch). (diff)
downloadhistorical-da390330d545e8d9d10bc3970d673c6f300d7f25.tar.gz
historical-da390330d545e8d9d10bc3970d673c6f300d7f25.tar.bz2
historical-da390330d545e8d9d10bc3970d673c6f300d7f25.zip
Add a workaround for broken dependencies until it can be fixed properly in the makefile #85540.
Package-Manager: portage-2.0.51.20
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r--sys-apps/texinfo/ChangeLog8
-rw-r--r--sys-apps/texinfo/Manifest8
-rw-r--r--sys-apps/texinfo/texinfo-4.8.ebuild11
3 files changed, 18 insertions, 9 deletions
diff --git a/sys-apps/texinfo/ChangeLog b/sys-apps/texinfo/ChangeLog
index aedb44f7bf05..65054c9c0318 100644
--- a/sys-apps/texinfo/ChangeLog
+++ b/sys-apps/texinfo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/texinfo
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.52 2005/04/09 13:03:50 corsair Exp $
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.53 2005/04/25 02:06:03 vapier Exp $
+
+ 25 Apr 2005; Mike Frysinger <vapier@gentoo.org> texinfo-4.8.ebuild:
+ Add a workaround for broken dependencies until it can be fixed properly in
+ the makefile #85540.
09 Apr 2005; Markus Rothe <corsair@gentoo.org> texinfo-4.8.ebuild:
Stable on ppc64
diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
index a64e3c04ce38..36514665b8f8 100644
--- a/sys-apps/texinfo/Manifest
+++ b/sys-apps/texinfo/Manifest
@@ -1,8 +1,8 @@
-MD5 50e21a332eb4297a6308146f06302db9 ChangeLog 6678
+MD5 53d1772cb2743c5f49a1345a1e782c38 ChangeLog 6848
MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164
+MD5 6ad1a2523d78af748624fd330447398b texinfo-4.8.ebuild 1832
MD5 75c60847c4f9b9d75375567cd1a3ba81 texinfo-4.7-r1.ebuild 1979
-MD5 f1d2ed2546805d5c80590f3be6aaf1de texinfo-4.8.ebuild 1641
-MD5 a2c21c53079eb65c306a08d230d15b2b files/digest-texinfo-4.7-r1 65
MD5 1c6181fd6a19db98315a1f737a5ae839 files/digest-texinfo-4.8 65
-MD5 a0df107ca9e3036e2ee2d501343cbf2b files/makeinfo.patch 790
MD5 690fb86d0c0215155b1d18671099115a files/mkinfodir 7318
+MD5 a2c21c53079eb65c306a08d230d15b2b files/digest-texinfo-4.7-r1 65
+MD5 a0df107ca9e3036e2ee2d501343cbf2b files/makeinfo.patch 790
diff --git a/sys-apps/texinfo/texinfo-4.8.ebuild b/sys-apps/texinfo/texinfo-4.8.ebuild
index 3e573b34786f..a6878ae94402 100644
--- a/sys-apps/texinfo/texinfo-4.8.ebuild
+++ b/sys-apps/texinfo/texinfo-4.8.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.8.ebuild,v 1.8 2005/04/09 13:03:50 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.8.ebuild,v 1.9 2005/04/25 02:06:03 vapier Exp $
inherit flag-o-matic eutils
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86 ~ppc-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 ~ppc-macos s390 sh sparc x86"
IUSE="nls build static"
RDEPEND="!build? ( >=sys-libs/ncurses-5.2-r2 )"
@@ -38,7 +38,12 @@ src_compile() {
use static && append-ldflags -static
econf ${myconf} || die
- emake || die
+
+ # work around broken dependency's in info/Makefile.am #85540
+ emake -C lib || die "emake lib"
+ emake -C info makedoc || die "emake makedoc"
+ emake -C info doc.c || die "emake doc.c"
+ emake || die "emake"
}
src_install() {