sipp: v3.6-dev bump

This commit is contained in:
blshkv 2017-10-31 07:53:17 +08:00
parent 7b85774b3d
commit 47bc2e92de
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
3 changed files with 20 additions and 13 deletions

View file

@ -1,2 +1,2 @@
DIST sipp-3.4.1.tar.gz 439326 SHA256 bb6829a1f3af8d8b5f08ffcd7de40e2692b4dfb9a83eccec3653a51f77a82bc4 SHA512 a9c792b9cad5a59ef02cc1cd62d55de584f4b73a9d0ff3d3969bdb68dc5835c7f8fed52ccc7691707332cc88b2e4bf0c29471e408b9f9076131cdb68084fbd57 WHIRLPOOL 4dfddb4650a1ad76007e8e123cd1b05b2f356b0f3d612c675bee44b9c53406b8e9d82282e00db5a1c18f8b55fac074ccb32c95548f1d1f2c55bab6342fcd5011
DIST sipp-3.5.1.tar.gz 325613 SHA256 3b5c58fb951b620ed7c0af47ec5e8a4409aae86b633beae19c8944dabecbef16 SHA512 f089ca6c3f04eec0b77fef3a711a289d63513238a3a1ceca3e2aba16bae226a9654b6f894a26f0dd7e918a1035e5a792b4eb72a3a4e4d550cf7f278cf9456967 WHIRLPOOL 63c4d1bdaa38513a2a86abb8624b382994a0b9d17e990359e338a3303c34b86e37a368f45c67ec6fa2b4c14ef91e0fd40e2f0e4a49f46b581f0ef2b63dd85db6
DIST sipp-3.6_pre.tar.gz 326955 SHA256 e96e3f5f6a1dc6af9ff8275e3dee95ab6f3ae2a6d28484ebeb69c8dccbbcf25d SHA512 8f1a3a0702ddee47c818f637143ca88aa2915f4c90012884967ceae4dcd81e4c0c3df53d88ce1936a2110d446f15a710533b0c63a6fa6d959f0de6aff9c5bebd WHIRLPOOL af6553395e08314474b51c905e388a671d7545fb6bfdf9f7b2925f964bc5b5fb8f7c641520a25e9e204c438815e745d919808cd609fbe8702936633e449b2265

View file

@ -1,8 +1,7 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
EAPI=6
inherit autotools
@ -19,8 +18,9 @@ DEPEND=""
RDEPEND="${DEPEND}"
src_prepare() {
echo "#define SIPP_VERSION \"v3.5.1\"" > include/version.h
echo "#define SIPP_VERSION \"v${MY_PV}\"" > include/version.h
eautoreconf
eapply_user
}
src_configure() {

View file

@ -1,12 +1,11 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
EAPI=6
inherit eutils
inherit autotools
MY_PV=${PV/_beta/-beta}
MY_PV="${PV//_pre/-dev}"
DESCRIPTION="SipBomber is a tool to stress SIP server/proxy implementations."
HOMEPAGE="http://sipp.sourceforge.net/"
@ -15,16 +14,24 @@ SRC_URI="https://github.com/SIPp/sipp/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pcap sctp ssl"
IUSE="gsl pcap rtpstream sctp ssl"
DEPEND=""
RDEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"/$PN-${MY_PV}
S="${WORKDIR}/${PN}-${MY_PV}"
src_prepare() {
echo "#define SIPP_VERSION \"v${MY_PV}\"" > include/version.h
eautoreconf
eapply_user
}
src_configure() {
econf \
$(use_with gsl) \
$(use_with pcap) \
$(use_with rtpstream) \
$(use_with sctp) \
$(use_with ssl openssl)
}