Skip to content

Commit

Permalink
net-misc/axel: Bump to EAPI=5
Browse files Browse the repository at this point in the history
Package-Manager: portage-2.2.22
Signed-off-by: Justin Lecher <[email protected]>
  • Loading branch information
jlec committed Sep 29, 2015
1 parent f4799d9 commit 9f89d9b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=4
EAPI=5

inherit eutils flag-o-matic toolchain-funcs

Expand Down Expand Up @@ -32,13 +32,13 @@ src_prepare() {
}

src_configure() {
local myconf=""
local myconf=()

use debug && myconf+=" --debug=1"
use nls && myconf+=" --i18n=$(use nls && echo 1 || echo 0)"
use debug && myconf+=( --debug=1 )
use nls && myconf+=( --i18n=$(usex nls 1 0) )
econf \
--strip=0 \
${myconf}
${myconf[@]}
}

pkg_postinst() {
Expand Down

0 comments on commit 9f89d9b

Please sign in to comment.