Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/sipsak: sipsak-0.9.6_p1.ebuild
Date: Thu, 28 Oct 2010 12:27:12
Message-Id: 20101028122706.8B9A920051@flycatcher.gentoo.org
1 ssuominen 10/10/28 12:27:06
2
3 Modified: sipsak-0.9.6_p1.ebuild
4 Log:
5 Fix more, berlios is in thirdpartymirrors, use EAPI2 while at it
6
7 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 net-misc/sipsak/sipsak-0.9.6_p1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/sipsak/sipsak-0.9.6_p1.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/sipsak/sipsak-0.9.6_p1.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/sipsak/sipsak-0.9.6_p1.ebuild?r1=1.6&r2=1.7
15
16 Index: sipsak-0.9.6_p1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/sipsak/sipsak-0.9.6_p1.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- sipsak-0.9.6_p1.ebuild 23 Sep 2009 19:44:49 -0000 1.6
23 +++ sipsak-0.9.6_p1.ebuild 28 Oct 2010 12:27:06 -0000 1.7
24 @@ -1,31 +1,31 @@
25 # Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/sipsak/sipsak-0.9.6_p1.ebuild,v 1.6 2009/09/23 19:44:49 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/sipsak/sipsak-0.9.6_p1.ebuild,v 1.7 2010/10/28 12:27:06 ssuominen Exp $
29
30 -IUSE="gnutls"
31 +EAPI=2
32
33 DESCRIPTION="small command line tool for testing SIP applications and devices"
34 HOMEPAGE="http://sipsak.org/"
35 -SRC_URI="http://download.berlios.de/sipsak/${P/_p/-}.tar.gz"
36 +SRC_URI="mirror://berlios/sipsak/${P/_p/-}.tar.gz"
37
38 LICENSE="GPL-2"
39 SLOT="0"
40 KEYWORDS="~amd64 ~ppc ~sparc x86 ~x86-fbsd"
41 +IUSE="gnutls"
42
43 RDEPEND="gnutls? ( net-libs/gnutls )
44 - net-dns/c-ares"
45 -# ares? ( net-dns/c-ares )"
46 -
47 + net-dns/c-ares"
48 +# ares? ( net-dns/c-ares )"
49 DEPEND="${RDEPEND}"
50
51 -S=${WORKDIR}/${P/_p1/}
52 +S=${WORKDIR}/${P/_p1}
53
54 -src_compile() {
55 - econf $(use_enable gnutls) || die 'configure failed'
56 - emake || die 'make failed'
57 +src_configure() {
58 + econf \
59 + $(use_enable gnutls)
60 }
61
62 src_install() {
63 - emake DESTDIR="${D}" install || die "install failed"
64 + emake DESTDIR="${D}" install || die
65 dodoc AUTHORS ChangeLog NEWS README TODO
66 }