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.0.ebuild
Date: Sat, 01 Mar 2008 10:19:22
Message-Id: E1JVOoJ-0007B3-46@stork.gentoo.org
1 dev-zero 08/03/01 10:19:19
2
3 Modified: ChangeLog
4 Added: aria2-0.13.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.21 net-misc/aria2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 16 Feb 2008 23:01:13 -0000 1.20
23 +++ ChangeLog 1 Mar 2008 10:19:18 -0000 1.21
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.20 2008/02/16 23:01:13 dev-zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.21 2008/03/01 10:19:18 dev-zero Exp $
29 +
30 +*aria2-0.13.0 (01 Mar 2008)
31 +
32 + 01 Mar 2008; Tiziano Müller <dev-zero@g.o>
33 + +files/0.13.0-misc_non_async_bugs.patch, +aria2-0.13.0.ebuild:
34 + Version bump.
35
36 *aria2-0.12.1_p1 (16 Feb 2008)
37
38
39
40
41 1.1 net-misc/aria2/aria2-0.13.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/aria2-0.13.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/aria2/aria2-0.13.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: aria2-0.13.0.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.0.ebuild,v 1.1 2008/03/01 10:19:18 dev-zero Exp $
51
52 inherit eutils
53
54 MY_P="aria2c-${PV/_p/+}"
55
56 DESCRIPTION="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP/BitTorrent support."
57 HOMEPAGE="http://aria2.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
59 LICENSE="GPL-2"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 SLOT="0"
62 IUSE="ares bittorrent expat gnutls metalink nls ssl test"
63
64 CDEPEND="ssl? (
65 gnutls? ( net-libs/gnutls )
66 !gnutls? ( dev-libs/openssl ) )
67 ares? ( >=net-dns/c-ares-1.3.1 )
68 bittorrent? ( gnutls? ( dev-libs/libgcrypt ) )
69 metalink? (
70 !expat? ( >=dev-libs/libxml2-2.6.26 )
71 expat? ( dev-libs/expat )
72 )"
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_unpack() {
82 unpack ${A}
83 cd "${S}"
84
85 epatch "${FILESDIR}/${PV}-misc_non_async_bugs.patch"
86 }
87
88 src_compile() {
89 use ssl && \
90 myconf="${myconf} $(use_with gnutls) $(use_with !gnutls openssl)"
91
92 # Note:
93 # - we don't have ares, only libcares
94 # - depends on libgcrypt only when using openssl
95 # - links only against libxml2 and libexpat when metalink is enabled
96 econf \
97 $(use_enable nls) \
98 $(use_enable metalink) \
99 $(use_with expat libexpat) \
100 $(use_with !expat libxml2) \
101 $(use_enable bittorrent) \
102 --without-ares \
103 $(use_with ares libcares) \
104 ${myconf} \
105 || die "econf failed"
106 emake || die "emake failed"
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "emake install failed"
111 dodoc ChangeLog README AUTHORS TODO NEWS
112 }
113
114
115
116 --
117 gentoo-commits@l.g.o mailing list