You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/axel/axel-2.4-r2.ebuild

50 lines
1.4 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/axel-2.4-r2.ebuild,v 1.3 2012/07/29 21:21:27 ottxor Exp $
EAPI=4
inherit eutils flag-o-matic toolchain-funcs
DOWNLOAD_ID=3016
DESCRIPTION="Light Unix download accelerator"
HOMEPAGE="http://axel.alioth.debian.org/"
SRC_URI="http://alioth.debian.org/frs/download.php/${DOWNLOAD_ID}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc64-solaris"
IUSE="debug nls"
DEPEND="nls? ( sys-devel/gettext )"
RDEPEND="nls? ( virtual/libintl )"
DOCS=( API CHANGES CREDITS README axelrc.example )
src_prepare() {
append-lfs-flags
epatch \
"${FILESDIR}"/${P}-buildsystem.patch \
"${FILESDIR}"/${P}-bffr-overflow.patch \
"${FILESDIR}"/${P}-max-redir.patch
tc-export CC
}
src_configure() {
local myconf=""
use debug && myconf+=" --debug=1"
use nls && myconf+=" --i18n=$(use nls && echo 1 || echo 0)"
econf \
--strip=0 \
${myconf}
}
pkg_postinst() {
einfo 'To use axel with portage, try these settings in your make.conf'
einfo
einfo ' FETCHCOMMAND='\''axel -a -o "\${DISTDIR}/\${FILE}.axel" "\${URI}" && mv "\${DISTDIR}/\${FILE}.axel" "\${DISTDIR}/\${FILE}"'\'
einfo ' RESUMECOMMAND="${FETCHCOMMAND}"'
}