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
commit63b11c7a1e26a1bf25f2b94c870099c669b2608d (patch)
treede67f34842880e9ff32d1a687da30c9d96e1f7df /net-analyzer/xtraceroute
parenttidy (diff)
downloadhistorical-63b11c7a1e26a1bf25f2b94c870099c669b2608d.tar.gz
historical-63b11c7a1e26a1bf25f2b94c870099c669b2608d.tar.bz2
historical-63b11c7a1e26a1bf25f2b94c870099c669b2608d.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/Manifest16
-rw-r--r--net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild14
3 files changed, 31 insertions, 6 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/Manifest b/net-analyzer/xtraceroute/Manifest
index cda1e683b7ca..9bbc6140a5a9 100644
--- a/net-analyzer/xtraceroute/Manifest
+++ b/net-analyzer/xtraceroute/Manifest
@@ -1,6 +1,16 @@
-MD5 f9398defead6c7d6a8ab0c9d94a3b086 ChangeLog 1214
-MD5 f34e3c8858756da0001b12d2d3fa1af2 metadata.xml 159
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 db29075781aa8a32954d7dd9ab8827e5 xtraceroute-0.9.1.ebuild 1627
MD5 088232d5219739085f5effc3fec91b9f xtraceroute-0.9.0.ebuild 1357
-MD5 32b706201ee051a46cae6ac57d690e7e xtraceroute-0.9.1.ebuild 1356
+MD5 d05310c356a0273446016948e58f869d ChangeLog 1465
+MD5 f34e3c8858756da0001b12d2d3fa1af2 metadata.xml 159
MD5 1edf2765399c932400ed6432a3d08fc1 files/digest-xtraceroute-0.9.0 129
MD5 890ee7981ab95097dfc101e8880bd66a files/digest-xtraceroute-0.9.1 130
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.4 (GNU/Linux)
+
+iD8DBQFA/tFaT+MN7JbqCpMRAqSQAJ0YZd2SduSdMmYw5cHOOZq+70yP/QCeLtXk
+ejy1el9yM47SC1OPsPQIjZA=
+=d/e5
+-----END PGP SIGNATURE-----
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"
}