Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/aria2: ChangeLog aria2-0.11.3.ebuild aria2-0.10.2_p1.ebuild
Date: Wed, 12 Sep 2007 21:17:17
Message-Id: E1IVZTC-0005oU-D6@stork.gentoo.org
1 dev-zero 07/09/12 21:09:58
2
3 Modified: ChangeLog
4 Added: aria2-0.11.3.ebuild
5 Removed: aria2-0.10.2_p1.ebuild
6 Log:
7 Version bump (bug #187025, tests broken again)
8 (Portage version: 2.1.3.8)
9
10 Revision Changes Path
11 1.15 net-misc/aria2/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 6 Apr 2007 07:36:45 -0000 1.14
24 +++ ChangeLog 12 Sep 2007 21:09:57 -0000 1.15
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/aria2
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.14 2007/04/06 07:36:45 dev-zero Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.15 2007/09/12 21:09:57 dev-zero Exp $
30 +
31 +*aria2-0.11.3 (12 Sep 2007)
32 +
33 + 12 Sep 2007; Tiziano Müller <dev-zero@g.o>
34 + -aria2-0.10.2_p1.ebuild, +aria2-0.11.3.ebuild:
35 + Version bump (bug #187025, tests broken again)
36
37 06 Apr 2007; Tiziano Müller <dev-zero@g.o> aria2-0.10.2_p1.ebuild:
38 Fixed missing IUSE (thanks to Jakub)
39
40
41
42 1.1 net-misc/aria2/aria2-0.11.3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/aria2-0.11.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/aria2-0.11.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: aria2-0.11.3.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-0.11.3.ebuild,v 1.1 2007/09/12 21:09:57 dev-zero Exp $
52
53 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
54
55 MY_P=${P/_p/+}
56
57 DESCRIPTION="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP/BitTorrent support."
58 HOMEPAGE="http://aria2.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
60 LICENSE="GPL-2"
61 SLOT="0"
62 IUSE="ares bittorrent gnutls metalink nls ssl test"
63
64 # Tests are broken again on amd64
65 RESTRICT="test"
66
67 CDEPEND="ssl? (
68 gnutls? ( net-libs/gnutls )
69 !gnutls? ( dev-libs/openssl ) )
70 ares? ( >=net-dns/c-ares-1.3.1 )
71 bittorrent? ( gnutls? ( dev-libs/libgcrypt ) )
72 metalink? ( >=dev-libs/libxml2-2.6.26 )"
73 DEPEND="${CDEPEND}
74 nls? ( sys-devel/gettext )
75 test? ( >=dev-util/cppunit-1.12.0 )"
76 RDEPEND="${CDEPEND}
77 nls? ( virtual/libiconv virtual/libintl )"
78
79 S=${WORKDIR}/${MY_P}
80
81 src_compile() {
82 cd ${S}
83 use ssl && \
84 myconf="${myconf} $(use_with gnutls) $(use_with !gnutls openssl)"
85
86 # Note:
87 # - we don't have ares, only libcares
88 # - depends on libgcrypt only when using openssl
89 econf \
90 $(use_enable nls) \
91 $(use_enable metalink) \
92 $(use_enable bittorrent) \
93 --without-ares \
94 $(use_with ares libcares) \
95 $(use_with metalink libxml2) \
96 ${myconf} \
97 || die "econf failed"
98 emake || die "emake failed"
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die "emake install failed"
103 dodoc ChangeLog README AUTHORS TODO NEWS
104 }
105
106
107
108 --
109 gentoo-commits@g.o mailing list