diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-01-20 17:14:12 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-01-20 17:14:12 +0000 |
commit | 0e5356f9959069af242e58464b19a96a7e859dd5 (patch) | |
tree | fee7b8b58a113fe47c02b3733e2141671fba9852 /net-analyzer/bmon/bmon-2.1.1_pre1.ebuild | |
parent | EAPI=2; add use-based dep (diff) | |
download | historical-0e5356f9959069af242e58464b19a96a7e859dd5.tar.gz historical-0e5356f9959069af242e58464b19a96a7e859dd5.tar.bz2 historical-0e5356f9959069af242e58464b19a96a7e859dd5.zip |
Version bump. Probably the last ever.
Package-Manager: portage-2.2_rc23/cvs/Linux i686
Diffstat (limited to 'net-analyzer/bmon/bmon-2.1.1_pre1.ebuild')
-rw-r--r-- | net-analyzer/bmon/bmon-2.1.1_pre1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-analyzer/bmon/bmon-2.1.1_pre1.ebuild b/net-analyzer/bmon/bmon-2.1.1_pre1.ebuild new file mode 100644 index 000000000000..287e3baece48 --- /dev/null +++ b/net-analyzer/bmon/bmon-2.1.1_pre1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bmon/bmon-2.1.1_pre1.ebuild,v 1.1 2009/01/20 17:14:12 jer Exp $ + +inherit eutils toolchain-funcs + +MY_PV="${PV/_pre/-pre}" +S="${WORKDIR}/${PN}-${MY_PV}" + +DESCRIPTION="interface bandwidth monitor" +HOMEPAGE="http://people.suug.ch/~tgr/bmon/" +SRC_URI="http://people.suug.ch/~tgr/bmon/files/${PN}-${MY_PV}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="dbi rrdtool" + +DEPEND=">=sys-libs/ncurses-5.3-r2 + >=dev-libs/libnl-0.5.0 + dbi? ( >=dev-db/libdbi-0.7.2-r1 ) + rrdtool? ( >=net-analyzer/rrdtool-1.2.6-r1 )" + +src_unpack() { + unpack ${A} + cd "${S}" + # gcc4 fix, bug 105343 + epatch "${FILESDIR}"/${PN}-2.1.0-gcc4.diff + # Don't strip, bug #144370 + epatch "${FILESDIR}"/${PN}-2.1.0-nostrip.patch + # libnl crap, bug 176378 + epatch "${FILESDIR}"/${PN}-2.1.0-libnl-1.0.patch + +} + +src_compile() { + econf \ + $(use_enable dbi) \ + $(use_enable rrdtool rrd) || die "econf failed" + emake CPPFLAGS="${CXXFLAGS} -I${WORKDIR}/libnl-${NLVER}/include" || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc ChangeLog +} |