2018-02-19 14:02:20 +03:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
2017-08-11 11:45:32 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
|
|
|
DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP"
|
|
|
|
HOMEPAGE="http://wput.sourceforge.net/"
|
|
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2018-04-17 09:23:52 +03:00
|
|
|
KEYWORDS="amd64 ppc ~sparc x86"
|
2017-08-11 11:45:32 +03:00
|
|
|
IUSE="debug nls ssl"
|
|
|
|
|
|
|
|
RDEPEND="ssl? ( net-libs/gnutls )"
|
|
|
|
|
|
|
|
DEPEND="
|
|
|
|
${RDEPEND}
|
|
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
|
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}/${PN}-0.6-gentoo.diff"
|
|
|
|
"${FILESDIR}/${PN}-0.6-respectldflags.patch"
|
|
|
|
)
|
|
|
|
|
|
|
|
DOCS=( ChangeLog INSTALL TODO )
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local myconf="--enable-g-switch=no"
|
|
|
|
use debug && myconf="--enable-memdbg=yes"
|
|
|
|
econf \
|
|
|
|
$(use_enable nls) \
|
|
|
|
$(use_with ssl) \
|
|
|
|
"${myconf}"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
}
|