diff options
author | Dane Smith <c1pher@gentoo.org> | 2011-04-19 16:08:03 +0000 |
---|---|---|
committer | Dane Smith <c1pher@gentoo.org> | 2011-04-19 16:08:03 +0000 |
commit | 33539d0c0ac1123ac953d6061d0d03768347a709 (patch) | |
tree | 67c48d929d26f6e9229f8349fa135665c2ce621b /net-analyzer/ostinato | |
parent | Install type1 fonts required for culmus-latex, bug #350657 thank Thomas Kahle... (diff) | |
download | gentoo-2-33539d0c0ac1123ac953d6061d0d03768347a709.tar.gz gentoo-2-33539d0c0ac1123ac953d6061d0d03768347a709.tar.bz2 gentoo-2-33539d0c0ac1123ac953d6061d0d03768347a709.zip |
net-analyzer/ostinato: Version bump to 0.4.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/ostinato')
-rw-r--r-- | net-analyzer/ostinato/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/ostinato/ostinato-0.4.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/net-analyzer/ostinato/ChangeLog b/net-analyzer/ostinato/ChangeLog index e2c0361a04c0..78da971912b5 100644 --- a/net-analyzer/ostinato/ChangeLog +++ b/net-analyzer/ostinato/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/ostinato # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ostinato/ChangeLog,v 1.7 2011/04/19 13:58:13 c1pher Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ostinato/ChangeLog,v 1.8 2011/04/19 16:08:03 c1pher Exp $ + +*ostinato-0.4 (19 Apr 2011) + + 19 Apr 2011; Dane Smith <c1pher@gentoo.org> +ostinato-0.4.ebuild: + 0.4 released. Version bump. 19 Apr 2011; Dane Smith <c1pher@gentoo.org> -ostinato-0.2.ebuild, ostinato-0.3.ebuild, +files/protobuf-2.4.0.diff: diff --git a/net-analyzer/ostinato/ostinato-0.4.ebuild b/net-analyzer/ostinato/ostinato-0.4.ebuild new file mode 100644 index 000000000000..a8848452e96e --- /dev/null +++ b/net-analyzer/ostinato/ostinato-0.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ostinato/ostinato-0.4.ebuild,v 1.1 2011/04/19 16:08:03 c1pher Exp $ + +EAPI=2 +inherit qt4-r2 + +DESCRIPTION="A packet generator and analyzer" +HOMEPAGE="http://code.google.com/p/ostinato/" +SRC_URI="http://ostinato.googlecode.com/files/${PN}-src-${PV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/protobuf + net-libs/libpcap + x11-libs/qt-core:4 + x11-libs/qt-gui:4 + x11-libs/qt-script:4" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/protobuf-2.4.0.diff +} + +src_configure(){ + eqmake4 PREFIX=/usr ost.pro +} |