diff options
author | 2014-07-15 00:14:30 +0000 | |
---|---|---|
committer | 2014-07-15 00:14:30 +0000 | |
commit | 01b7c47c4aae19fbf13ddb119322fbc97090d73e (patch) | |
tree | 9e8c5a8e727d6636918b5089abe71b1e22f0668e /net-analyzer/nstats/nstats-0.4-r2.ebuild | |
parent | EAPI bump. Fix building against sys-libs/ncurses[tinfo]. (diff) | |
download | historical-01b7c47c4aae19fbf13ddb119322fbc97090d73e.tar.gz historical-01b7c47c4aae19fbf13ddb119322fbc97090d73e.tar.bz2 historical-01b7c47c4aae19fbf13ddb119322fbc97090d73e.zip |
EAPI bump. Fix building against sys-libs/ncurses[tinfo]. Drop <sys-libs/glibc-2.4 condition. Clean up patches.
Package-Manager: portage-2.2.10/cvs/Linux x86_64
Manifest-Sign-Key: 0xA792A613
Diffstat (limited to 'net-analyzer/nstats/nstats-0.4-r2.ebuild')
-rw-r--r-- | net-analyzer/nstats/nstats-0.4-r2.ebuild | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/net-analyzer/nstats/nstats-0.4-r2.ebuild b/net-analyzer/nstats/nstats-0.4-r2.ebuild index b6e968168736..b2f7fd73be54 100644 --- a/net-analyzer/nstats/nstats-0.4-r2.ebuild +++ b/net-analyzer/nstats/nstats-0.4-r2.ebuild @@ -1,29 +1,35 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nstats/nstats-0.4-r2.ebuild,v 1.4 2012/03/18 17:49:08 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nstats/nstats-0.4-r2.ebuild,v 1.5 2014/07/15 00:14:28 jer Exp $ -EAPI=4 +EAPI=5 -inherit eutils +inherit autotools eutils DESCRIPTION="Displays statistics about ethernet traffic including protocol breakdown" SRC_URI="http://trash.net/~reeler/nstats/files/${P}.tar.gz" HOMEPAGE="http://trash.net/~reeler/nstats/" +LICENSE="Artistic" SLOT="0" -LICENSE="Artistic" KEYWORDS="amd64 ~ppc x86" -IUSE="" -DEPEND="net-libs/libpcap" -RDEPEND="${DEPEND}" +RDEPEND=" + net-libs/libpcap + sys-libs/ncurses +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig +" DOCS=( BUGS doc/TODO doc/ChangeLog ) src_prepare(){ - epatch "${FILESDIR}"/${P}-makefile.patch + epatch \ + "${FILESDIR}"/${P}-glibc24.patch \ + "${FILESDIR}"/${P}-makefile.patch \ + "${FILESDIR}"/${P}-tinfo.patch - if has_version '>=sys-libs/glibc-2.4' ; then - epatch "${FILESDIR}"/${P}-glibc24.patch - fi + eautoreconf } |