diff options
author | Mike Auty <ikelos@gentoo.org> | 2007-07-03 23:44:39 +0000 |
---|---|---|
committer | Mike Auty <ikelos@gentoo.org> | 2007-07-03 23:44:39 +0000 |
commit | 2752dc92a3b0b5b0584b31db45914bdca4686ce8 (patch) | |
tree | e35dee43dd7fa4155f734fcc8a1665a32a316075 /net-analyzer | |
parent | Initial addition. Needed to add src_test for dev-java/xstream. Ebuild written... (diff) | |
download | gentoo-2-2752dc92a3b0b5b0584b31db45914bdca4686ce8.tar.gz gentoo-2-2752dc92a3b0b5b0584b31db45914bdca4686ce8.tar.bz2 gentoo-2-2752dc92a3b0b5b0584b31db45914bdca4686ce8.zip |
Version bump.
(Portage version: 2.1.3_rc6)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nipper/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nipper/files/digest-nipper-0.10.1 | 3 | ||||
-rw-r--r-- | net-analyzer/nipper/nipper-0.10.1.ebuild | 29 |
3 files changed, 38 insertions, 1 deletions
diff --git a/net-analyzer/nipper/ChangeLog b/net-analyzer/nipper/ChangeLog index b58672bf028d..96661ee8f3f7 100644 --- a/net-analyzer/nipper/ChangeLog +++ b/net-analyzer/nipper/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/nipper # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nipper/ChangeLog,v 1.4 2007/06/24 17:46:49 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nipper/ChangeLog,v 1.5 2007/07/03 23:44:39 ikelos Exp $ + +*nipper-0.10.1 (03 Jul 2007) + + 03 Jul 2007; Mike Auty <ikelos@gentoo.org> +nipper-0.10.1.ebuild: + Version bump. *nipper-0.10.0 (24 Jun 2007) diff --git a/net-analyzer/nipper/files/digest-nipper-0.10.1 b/net-analyzer/nipper/files/digest-nipper-0.10.1 new file mode 100644 index 000000000000..c67049298d48 --- /dev/null +++ b/net-analyzer/nipper/files/digest-nipper-0.10.1 @@ -0,0 +1,3 @@ +MD5 3d927055822dbe027c86cc937e8bad54 nipper-0.10.1.tgz 198224 +RMD160 2d2a225de93a08dc7bb1b2971b24689f7cf72d3c nipper-0.10.1.tgz 198224 +SHA256 e46c90d83befb7101698854e7709839bd016eeac672c15ab129e23f6f82683ac nipper-0.10.1.tgz 198224 diff --git a/net-analyzer/nipper/nipper-0.10.1.ebuild b/net-analyzer/nipper/nipper-0.10.1.ebuild new file mode 100644 index 000000000000..84ffea0cb246 --- /dev/null +++ b/net-analyzer/nipper/nipper-0.10.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nipper/nipper-0.10.1.ebuild,v 1.1 2007/07/03 23:44:39 ikelos Exp $ + +inherit toolchain-funcs eutils + +DESCRIPTION="Script to parse and report on Cisco config errors" +HOMEPAGE="http://www.sourceforge.net/projects/nipper" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +RESTRICT="mirror" + +src_compile() { + cd ${S} + $(tc-getCC) ${CFLAGS} ${PN}.c -o${PN} +} + +src_install() { + dobin ${PN} + dodoc Readme INSTALL LICENSE TODO Changelog docs/* +} |