diff options
-rw-r--r-- | net-analyzer/fe3d/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/fe3d/fe3d-0.8.3.ebuild | 16 |
2 files changed, 17 insertions, 7 deletions
diff --git a/net-analyzer/fe3d/ChangeLog b/net-analyzer/fe3d/ChangeLog index 10c405e2db69..16fb7d3c236e 100644 --- a/net-analyzer/fe3d/ChangeLog +++ b/net-analyzer/fe3d/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/fe3d -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fe3d/ChangeLog,v 1.7 2007/05/01 17:47:55 genone Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fe3d/ChangeLog,v 1.8 2008/01/26 11:14:30 pva Exp $ + + 26 Jan 2008; <pva@gentoo.org> fe3d-0.8.3.ebuild: + Fixed compilation problem, bug 205543, thank Compile Person <bugs AT + dev.gentooexperimental.org> for report. 01 May 2007; Marius Mauch <genone@gentoo.org> fe3d-0.8.3.ebuild: Replacing einfo with elog diff --git a/net-analyzer/fe3d/fe3d-0.8.3.ebuild b/net-analyzer/fe3d/fe3d-0.8.3.ebuild index e0be74d9bd9d..626f651fd2d4 100644 --- a/net-analyzer/fe3d/fe3d-0.8.3.ebuild +++ b/net-analyzer/fe3d/fe3d-0.8.3.ebuild @@ -1,8 +1,8 @@ -# 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/net-analyzer/fe3d/fe3d-0.8.3.ebuild,v 1.7 2007/05/01 17:47:55 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fe3d/fe3d-0.8.3.ebuild,v 1.8 2008/01/26 11:14:30 pva Exp $ -inherit versionator +inherit versionator autotools MY_P="${PN}-$(replace_version_separator 2 '-')" @@ -23,11 +23,17 @@ DEPEND="${RDEPEND} app-arch/unzip virtual/opengl" -S="${WORKDIR}/${PN}" +S=${WORKDIR}/${PN} src_unpack() { unpack ${A} - chmod +x "${S}"/configure || die "chmod failed" + cd "${S}" + + # configure is not executable, remove it as autoreconf recreate it + rm configure + # autoreconf is required as in other case build system will call wrong + # automake utilities, bug 205543 + eautoreconf } src_install() { |