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.13.2_p1.ebuild
Date: Sat, 31 May 2008 08:32:00
Message-Id: E1K2MVG-0004Nq-JY@stork.gentoo.org
1 dev-zero 08/05/31 08:31:54
2
3 Modified: ChangeLog
4 Added: aria2-0.13.2_p1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.5_rc7)
8
9 Revision Changes Path
10 1.25 net-misc/aria2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 19 May 2008 11:35:25 -0000 1.24
23 +++ ChangeLog 31 May 2008 08:31:54 -0000 1.25
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/aria2
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.24 2008/05/19 11:35:25 dev-zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.25 2008/05/31 08:31:54 dev-zero Exp $
29 +
30 +*aria2-0.13.2_p1 (31 May 2008)
31 +
32 + 31 May 2008; Tiziano Müller <dev-zero@g.o>
33 + +aria2-0.13.2_p1.ebuild:
34 + Version bump.
35
36 *aria2-0.13.1_p2 (19 May 2008)
37
38
39
40
41 1.1 net-misc/aria2/aria2-0.13.2_p1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/aria2-0.13.2_p1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/aria2-0.13.2_p1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: aria2-0.13.2_p1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-0.13.2_p1.ebuild,v 1.1 2008/05/31 08:31:54 dev-zero Exp $
51
52 MY_P="aria2c-${PV/_p/+}"
53
54 DESCRIPTION="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP/BitTorrent support."
55 HOMEPAGE="http://aria2.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
57 LICENSE="GPL-2"
58 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
59 SLOT="0"
60 IUSE="ares bittorrent expat gnutls metalink nls ssl test"
61
62 # Broken (once more)
63 RESTRICT="test"
64
65 CDEPEND="ssl? (
66 gnutls? ( net-libs/gnutls )
67 !gnutls? ( dev-libs/openssl ) )
68 ares? ( >=net-dns/c-ares-1.3.1 )
69 bittorrent? ( gnutls? ( dev-libs/libgcrypt ) )
70 metalink? (
71 !expat? ( >=dev-libs/libxml2-2.6.26 )
72 expat? ( dev-libs/expat )
73 )"
74 DEPEND="${CDEPEND}
75 nls? ( sys-devel/gettext )
76 test? ( >=dev-util/cppunit-1.12.0 )"
77 RDEPEND="${CDEPEND}
78 nls? ( virtual/libiconv virtual/libintl )"
79
80 S="${WORKDIR}/${MY_P}"
81
82 src_compile() {
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 # - links only against libxml2 and libexpat when metalink is enabled
90 econf \
91 $(use_enable nls) \
92 $(use_enable metalink) \
93 $(use_with expat libexpat) \
94 $(use_with !expat libxml2) \
95 $(use_enable bittorrent) \
96 --without-ares \
97 $(use_with ares libcares) \
98 ${myconf} \
99 || die "econf failed"
100 emake || die "emake failed"
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" install || die "emake install failed"
105 dodoc ChangeLog README AUTHORS TODO NEWS
106 }
107
108
109
110 --
111 gentoo-commits@l.g.o mailing list