summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEldad Zack <eldad@gentoo.org>2004-07-21 20:29:11 +0000
committerEldad Zack <eldad@gentoo.org>2004-07-21 20:29:11 +0000
commit070a7c98a655f01278be741adaec716774b945ee (patch)
treed99464a48e9d1e9b11200a398694c02a6340750c /net-analyzer/xtraceroute
parenttidy (Manifest recommit) (diff)
downloadgentoo-2-070a7c98a655f01278be741adaec716774b945ee.tar.gz
gentoo-2-070a7c98a655f01278be741adaec716774b945ee.tar.bz2
gentoo-2-070a7c98a655f01278be741adaec716774b945ee.zip
added info about possible configure failure. closes #57504
Diffstat (limited to 'net-analyzer/xtraceroute')
-rw-r--r--net-analyzer/xtraceroute/ChangeLog7
-rw-r--r--net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild14
2 files changed, 18 insertions, 3 deletions
diff --git a/net-analyzer/xtraceroute/ChangeLog b/net-analyzer/xtraceroute/ChangeLog
index 28a7f4b478f1..fb132b3920f2 100644
--- a/net-analyzer/xtraceroute/ChangeLog
+++ b/net-analyzer/xtraceroute/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-analyzer/xtraceroute
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/ChangeLog,v 1.12 2004/07/15 18:24:16 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/ChangeLog,v 1.13 2004/07/21 20:29:11 eldad Exp $
+
+ 21 Jul 2004; Eldad Zack <eldad@gentoo.org> xtraceroute-0.9.1.ebuild:
+ Added information about recurring problem with gtkglarea-1.2.3-r1 needing to
+ opengl-update prior to building xtraceroute. Thanks to je_fro
+ <jeff2712@yahoo.com>. Closes #57504.
15 Jul 2004; Gustavo Zacarias <gustavoz@gentoo.org>
xtraceroute-0.9.1.ebuild:
diff --git a/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild b/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild
index d645c04e0ad1..0b42559d5a4a 100644
--- a/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild
+++ b/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild,v 1.4 2004/07/15 18:24:16 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild,v 1.5 2004/07/21 20:29:11 eldad Exp $
DESCRIPTION="neat graphical traceroute displaying route on the globe"
SRC_URI="http://www.dtek.chalmers.se/~d3august/xt/dl/${P}.tar.gz
@@ -29,7 +29,17 @@ src_compile() {
--prefix=/usr \
--with-host=/usr/bin/hostx \
--infodir=/usr/share/info \
- --mandir=/usr/share/man || die "./configure failed"
+ --mandir=/usr/share/man
+
+ if [ $? != 0 ]; then
+ echo ""
+ eerror "If configure fails with 'Cannot find proper gtkgl version'"
+ eerror "try to 'opengl-update' and then re-emerging =gtkglarea-1.2.3*."
+ eerror "# opengl-update <GL implementation>"
+ eerror "# emerge =gtkglarea-1.2.3*"
+ echo ""
+ die "configure failed."
+ fi
emake || die "emake failed"
}