diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-07-16 04:27:13 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-07-16 04:27:13 +0000 |
commit | 51b35a5ff20972bd82fbb8d0d2b283178191b671 (patch) | |
tree | a2839b830445bdc1af67e53c5652eed1f441cd9a /net-analyzer/sinfo | |
parent | Version bump, now with python3 support. Drop old. (diff) | |
download | gentoo-2-51b35a5ff20972bd82fbb8d0d2b283178191b671.tar.gz gentoo-2-51b35a5ff20972bd82fbb8d0d2b283178191b671.tar.bz2 gentoo-2-51b35a5ff20972bd82fbb8d0d2b283178191b671.zip |
Version bump.
(Portage version: 2.2.0_alpha118/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/sinfo')
-rw-r--r-- | net-analyzer/sinfo/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/sinfo/sinfo-0.0.47.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/net-analyzer/sinfo/ChangeLog b/net-analyzer/sinfo/ChangeLog index 4ddca164270b..bb6689f756ec 100644 --- a/net-analyzer/sinfo/ChangeLog +++ b/net-analyzer/sinfo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/sinfo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/ChangeLog,v 1.10 2012/05/14 21:46:54 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/ChangeLog,v 1.11 2012/07/16 04:27:13 radhermit Exp $ + +*sinfo-0.0.47 (16 Jul 2012) + + 16 Jul 2012; Tim Harder <radhermit@gentoo.org> +sinfo-0.0.47.ebuild: + Version bump. 14 May 2012; Tim Harder <radhermit@gentoo.org> -sinfo-0.0.44.ebuild: Remove old. diff --git a/net-analyzer/sinfo/sinfo-0.0.47.ebuild b/net-analyzer/sinfo/sinfo-0.0.47.ebuild new file mode 100644 index 000000000000..38cf839a29d4 --- /dev/null +++ b/net-analyzer/sinfo/sinfo-0.0.47.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/sinfo-0.0.47.ebuild,v 1.1 2012/07/16 04:27:13 radhermit Exp $ + +EAPI="4" + +inherit autotools-utils + +DESCRIPTION="A monitoring tool for networked computers" +HOMEPAGE="http://www.ant.uni-bremen.de/whomes/rinas/sinfo/" +SRC_URI="http://www.ant.uni-bremen.de/whomes/rinas/${PN}/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ipv6 static-libs" + +RDEPEND="dev-libs/boost + sys-libs/ncurses" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS ChangeLog README ) + +src_configure() { + local myeconfargs=( + --with-ncurses + $(use_enable ipv6 IPv6) + ) + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + + newconfd "${FILESDIR}"/sinfod.confd sinfod + newinitd "${FILESDIR}"/sinfod.initd sinfod +} |