diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2009-07-17 10:55:29 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2009-07-17 10:55:29 +0000 |
commit | 2ee89b1533d0cb98c119c6ebcfd83a95e740b348 (patch) | |
tree | 77b5ea6d978df943b851d6b7d5d169e863caa735 /net-misc | |
parent | Fix correctly bug #277739, remove template fix, replaced LT_* macros by AC_LI... (diff) | |
download | gentoo-2-2ee89b1533d0cb98c119c6ebcfd83a95e740b348.tar.gz gentoo-2-2ee89b1533d0cb98c119c6ebcfd83a95e740b348.tar.bz2 gentoo-2-2ee89b1533d0cb98c119c6ebcfd83a95e740b348.zip |
Version bump (bug #277753, also corrected bug #270175). Dropped old.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/aria2/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/aria2/aria2-1.2.0.ebuild | 70 | ||||
-rw-r--r-- | net-misc/aria2/aria2-1.3.2.ebuild | 70 | ||||
-rw-r--r-- | net-misc/aria2/aria2-1.4.1.ebuild (renamed from net-misc/aria2/aria2-1.3.0.ebuild) | 4 |
4 files changed, 9 insertions, 143 deletions
diff --git a/net-misc/aria2/ChangeLog b/net-misc/aria2/ChangeLog index 5250c87e2ea2..7faafdff392b 100644 --- a/net-misc/aria2/ChangeLog +++ b/net-misc/aria2/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/aria2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.42 2009/05/10 15:23:14 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.43 2009/07/17 10:55:29 dev-zero Exp $ + +*aria2-1.4.1 (17 Jul 2009) + + 17 Jul 2009; Tiziano Müller <dev-zero@gentoo.org> -aria2-1.2.0.ebuild, + -aria2-1.3.0.ebuild, -aria2-1.3.2.ebuild, +aria2-1.4.1.ebuild: + Version bump (bug #277753, also corrected bug #270175). Dropped old. *aria2-1.3.3 (10 May 2009) diff --git a/net-misc/aria2/aria2-1.2.0.ebuild b/net-misc/aria2/aria2-1.2.0.ebuild deleted file mode 100644 index a40953a5eee3..000000000000 --- a/net-misc/aria2/aria2-1.2.0.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-1.2.0.ebuild,v 1.1 2009/02/23 20:23:26 dev-zero Exp $ - -EAPI="2" - -DESCRIPTION="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP/BitTorrent support." -HOMEPAGE="http://aria2.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -SLOT="0" -IUSE="ares bittorrent expat gnutls metalink nls sqlite3 ssl test" - -CDEPEND="sys-libs/zlib - ssl? ( - gnutls? ( >=net-libs/gnutls-1.2.9 ) - !gnutls? ( dev-libs/openssl ) ) - ares? ( >=net-dns/c-ares-1.5.0 ) - bittorrent? ( - gnutls? ( >=net-libs/gnutls-1.2.9 >=dev-libs/libgcrypt-1.2.2 ) - !gnutls? ( dev-libs/openssl ) ) - metalink? ( - !expat? ( >=dev-libs/libxml2-2.6.26 ) - expat? ( dev-libs/expat ) - ) - sqlite3? ( dev-db/sqlite:3 )" -DEPEND="${CDEPEND} - nls? ( sys-devel/gettext ) - test? ( >=dev-util/cppunit-1.12.0 )" -RDEPEND="${CDEPEND} - nls? ( virtual/libiconv virtual/libintl )" - -src_prepare() { - sed -i -e "s|/tmp|${T}|" test/*.cc test/*.txt || die "sed failed" -} - -src_configure() { - local myconf="--without-gnutls --without-openssl" - use ssl && \ - myconf="$(use_with gnutls) $(use_with !gnutls openssl)" - - # Note: - # - depends on libgcrypt only when using gnutls - # - links only against libxml2 and libexpat when metalink is enabled - # - always enable gzip/http compression since zlib should always be available anyway - # - always enable epoll since we can assume kernel 2.6.x - # - other options for threads: solaris, pth, win32 - econf \ - --enable-epoll \ - --enable-threads=posix \ - --with-libz \ - $(use_enable nls) \ - $(use_enable metalink) \ - $(use_with expat libexpat) \ - $(use_with !expat libxml2) \ - $(use_with sqlite3) \ - $(use_enable bittorrent) \ - $(use_with ares libcares) \ - ${myconf} \ - || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - rm -rf "${D}/usr/share/doc/aria2c" - dodoc ChangeLog README AUTHORS NEWS - dohtml README.html doc/aria2c.1.html -} diff --git a/net-misc/aria2/aria2-1.3.2.ebuild b/net-misc/aria2/aria2-1.3.2.ebuild deleted file mode 100644 index ee528663b7f3..000000000000 --- a/net-misc/aria2/aria2-1.3.2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-1.3.2.ebuild,v 1.1 2009/04/30 10:52:22 dev-zero Exp $ - -EAPI="2" - -DESCRIPTION="A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP/BitTorrent support." -HOMEPAGE="http://aria2.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -SLOT="0" -IUSE="ares bittorrent expat gnutls metalink nls sqlite ssl test" - -CDEPEND="sys-libs/zlib - ssl? ( - gnutls? ( >=net-libs/gnutls-1.2.9 ) - !gnutls? ( dev-libs/openssl ) ) - ares? ( >=net-dns/c-ares-1.5.0 ) - bittorrent? ( - gnutls? ( >=net-libs/gnutls-1.2.9 >=dev-libs/libgcrypt-1.2.2 ) - !gnutls? ( dev-libs/openssl ) ) - metalink? ( - !expat? ( >=dev-libs/libxml2-2.6.26 ) - expat? ( dev-libs/expat ) - ) - sqlite? ( dev-db/sqlite:3 )" -DEPEND="${CDEPEND} - nls? ( sys-devel/gettext ) - test? ( >=dev-util/cppunit-1.12.0 )" -RDEPEND="${CDEPEND} - nls? ( virtual/libiconv virtual/libintl )" - -src_prepare() { - sed -i -e "s|/tmp|${T}|" test/*.cc test/*.txt || die "sed failed" -} - -src_configure() { - local myconf="--without-gnutls --without-openssl" - use ssl && \ - myconf="$(use_with gnutls) $(use_with !gnutls openssl)" - - # Note: - # - depends on libgcrypt only when using gnutls - # - links only against libxml2 and libexpat when metalink is enabled - # - always enable gzip/http compression since zlib should always be available anyway - # - always enable epoll since we can assume kernel 2.6.x - # - other options for threads: solaris, pth, win32 - econf \ - --enable-epoll \ - --enable-threads=posix \ - --with-libz \ - $(use_enable nls) \ - $(use_enable metalink) \ - $(use_with expat libexpat) \ - $(use_with !expat libxml2) \ - $(use_with sqlite sqlite3) \ - $(use_enable bittorrent) \ - $(use_with ares libcares) \ - ${myconf} \ - || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - rm -rf "${D}/usr/share/doc/aria2c" - dodoc ChangeLog README AUTHORS NEWS - dohtml README.html doc/aria2c.1.html -} diff --git a/net-misc/aria2/aria2-1.3.0.ebuild b/net-misc/aria2/aria2-1.4.1.ebuild index 2fd4e0fb5052..d4d2e2d4d867 100644 --- a/net-misc/aria2/aria2-1.3.0.ebuild +++ b/net-misc/aria2/aria2-1.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-1.3.0.ebuild,v 1.1 2009/04/06 15:35:59 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-1.4.1.ebuild,v 1.1 2009/07/17 10:55:29 dev-zero Exp $ EAPI="2" @@ -64,7 +64,7 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die "emake install failed" - rm -rf "${D}/usr/share/doc/aria2c" + rm -rf "${D}/usr/share/doc/aria2" dodoc ChangeLog README AUTHORS NEWS dohtml README.html doc/aria2c.1.html } |