diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-11-28 07:07:06 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-11-28 07:07:06 +0000 |
commit | 5dec949c254e3a7a1bf5e56b15ce45596cf09192 (patch) | |
tree | 1fdb381980f96d0276fe0735aa91c55aa30801d9 /net-analyzer/nb | |
parent | Remove unused autotools setting. (diff) | |
download | gentoo-2-5dec949c254e3a7a1bf5e56b15ce45596cf09192.tar.gz gentoo-2-5dec949c254e3a7a1bf5e56b15ce45596cf09192.tar.bz2 gentoo-2-5dec949c254e3a7a1bf5e56b15ce45596cf09192.zip |
Remove autotools-utils eclass usage (fixes bug #392105).
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/nb')
-rw-r--r-- | net-analyzer/nb/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/nb/nb-0.8.3.ebuild | 8 |
2 files changed, 7 insertions, 6 deletions
diff --git a/net-analyzer/nb/ChangeLog b/net-analyzer/nb/ChangeLog index 340041524443..c9e186fcf224 100644 --- a/net-analyzer/nb/ChangeLog +++ b/net-analyzer/nb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/nb # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/ChangeLog,v 1.13 2011/11/27 04:29:59 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/ChangeLog,v 1.14 2011/11/28 07:07:06 radhermit Exp $ + + 28 Nov 2011; Tim Harder <radhermit@gentoo.org> nb-0.8.3.ebuild: + Remove autotools-utils eclass usage (fixes bug #392105). 27 Nov 2011; Tim Harder <radhermit@gentoo.org> nb-0.8.3.ebuild: Build in the source tree. diff --git a/net-analyzer/nb/nb-0.8.3.ebuild b/net-analyzer/nb/nb-0.8.3.ebuild index b9514d9861ea..d94185ce7fa3 100644 --- a/net-analyzer/nb/nb-0.8.3.ebuild +++ b/net-analyzer/nb/nb-0.8.3.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/nb-0.8.3.ebuild,v 1.5 2011/11/27 04:29:59 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/nb-0.8.3.ebuild,v 1.6 2011/11/28 07:07:06 radhermit Exp $ EAPI="3" -inherit autotools autotools-utils eutils +inherit autotools eutils DESCRIPTION="Nodebrain is a tool to monitor and do event correlation." HOMEPAGE="http://nodebrain.sourceforge.net/" @@ -25,8 +25,6 @@ RDEPEND=" !www-apps/nanoblogger " -AUTOTOOLS_IN_SOURCE_BUILD=1 - S="${WORKDIR}/nodebrain-${PV}" src_prepare() { @@ -49,7 +47,7 @@ src_compile() { src_install() { emake DESTDIR="${D}" install || die - use static-libs || remove_libtool_files + use static-libs || find "${D}" -name '*.la' -delete dodoc AUTHORS NEWS README THANKS sample/* dohtml html/* } |