diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-11-06 06:09:05 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-11-06 06:09:05 +0000 |
commit | 5334605c2a7d425afbfac94d32ad48bf65b21b9c (patch) | |
tree | 3887c3ee7b645b1dadadf99f94ee4c907f849e80 /net-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-5334605c2a7d425afbfac94d32ad48bf65b21b9c.tar.gz gentoo-2-5334605c2a7d425afbfac94d32ad48bf65b21b9c.tar.bz2 gentoo-2-5334605c2a7d425afbfac94d32ad48bf65b21b9c.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libprotoident/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libprotoident/libprotoident-2.0.7.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/net-libs/libprotoident/ChangeLog b/net-libs/libprotoident/ChangeLog index 6d05e9a17bdb..af88706436ff 100644 --- a/net-libs/libprotoident/ChangeLog +++ b/net-libs/libprotoident/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libprotoident # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libprotoident/ChangeLog,v 1.2 2013/01/29 06:05:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libprotoident/ChangeLog,v 1.3 2013/11/06 06:09:05 radhermit Exp $ + +*libprotoident-2.0.7 (06 Nov 2013) + + 06 Nov 2013; Tim Harder <radhermit@gentoo.org> +libprotoident-2.0.7.ebuild: + Version bump. 29 Jan 2013; Tim Harder <radhermit@gentoo.org> metadata.xml: Fix metadata. diff --git a/net-libs/libprotoident/libprotoident-2.0.7.ebuild b/net-libs/libprotoident/libprotoident-2.0.7.ebuild new file mode 100644 index 000000000000..1d78f0750de9 --- /dev/null +++ b/net-libs/libprotoident/libprotoident-2.0.7.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libprotoident/libprotoident-2.0.7.ebuild,v 1.1 2013/11/06 06:09:05 radhermit Exp $ + +EAPI=5 + +inherit autotools-utils + +DESCRIPTION="A library that performs application layer protocol identification for flows" +HOMEPAGE="http://research.wand.net.nz/software/libprotoident.php" +SRC_URI="http://research.wand.net.nz/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/2" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs +tools" + +DEPEND=">=net-libs/libtrace-3.0.7 + tools? ( net-libs/libflowmanager )" +RDEPEND="${DEPEND}" + +AUTOTOOLS_IN_SOURCE_BUILD=1 + +src_configure() { + local myeconfargs=( + $(use_with tools) + ) + autotools-utils_src_configure +} |