From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C163B58973 for ; Tue, 19 Jan 2016 10:31:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 570A121C088; Tue, 19 Jan 2016 10:31:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06C0421C088 for ; Tue, 19 Jan 2016 10:31:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0FE2D340766 for ; Tue, 19 Jan 2016 10:31:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9C41A2C for ; Tue, 19 Jan 2016 10:31:44 +0000 (UTC) From: "Tony Vroon" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tony Vroon" Message-ID: <1453199519.e7d29f9c85b47fea5a96bdefc09e359ec1212209.chainsaw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sipsak/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/sipsak/sipsak-0.9.6_p1-r2.ebuild net-misc/sipsak/sipsak-0.9.6_p1.ebuild X-VCS-Directories: net-misc/sipsak/ X-VCS-Committer: chainsaw X-VCS-Committer-Name: Tony Vroon X-VCS-Revision: e7d29f9c85b47fea5a96bdefc09e359ec1212209 X-VCS-Branch: master Date: Tue, 19 Jan 2016 10:31:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4e2fa7a0-a7b9-4461-aa6f-1c1bff3f0c9b X-Archives-Hash: 617b69fe56ad8aaa6a41e0d2d64fde69 commit: e7d29f9c85b47fea5a96bdefc09e359ec1212209 Author: Tony Vroon gentoo org> AuthorDate: Tue Jan 19 10:31:39 2016 +0000 Commit: Tony Vroon gentoo org> CommitDate: Tue Jan 19 10:31:59 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7d29f9c net-misc/sipsak: GCC 5 compatibility patch by Thomas "whissi" D. in bug #568588. Package-Manager: portage-2.2.26 ...sak-0.9.6_p1.ebuild => sipsak-0.9.6_p1-r2.ebuild} | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/net-misc/sipsak/sipsak-0.9.6_p1.ebuild b/net-misc/sipsak/sipsak-0.9.6_p1-r2.ebuild similarity index 57% rename from net-misc/sipsak/sipsak-0.9.6_p1.ebuild rename to net-misc/sipsak/sipsak-0.9.6_p1-r2.ebuild index 6567126..9810ba9 100644 --- a/net-misc/sipsak/sipsak-0.9.6_p1.ebuild +++ b/net-misc/sipsak/sipsak-0.9.6_p1-r2.ebuild @@ -1,27 +1,33 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=2 +EAPI=5 + +inherit eutils flag-o-matic DESCRIPTION="small command line tool for testing SIP applications and devices" -HOMEPAGE="http://sipsak.org/" -#SRC_URI="mirror://berlios/sipsak/${P/_p/-}.tar.gz" -SRC_URI="mirror://gentoo/${P/_p/-}.tar.gz" +HOMEPAGE="http://sourceforge.net/projects/sipsak.berlios/" +SRC_URI="mirror://sourceforge/sipsak.berlios/${P/_p/-}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc x86 ~x86-fbsd" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" IUSE="gnutls" RDEPEND="gnutls? ( net-libs/gnutls ) net-dns/c-ares" -# ares? ( net-dns/c-ares )" DEPEND="${RDEPEND}" S=${WORKDIR}/${P/_p1} +src_prepare() { + epatch "${FILESDIR}/${PV}-callback.patch" +} + src_configure() { + append-cflags -std=gnu89 + econf \ $(use_enable gnutls) }