blob: b9fa842bf3ab4ca1ee2009601749df26fe2d740d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
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"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="debug nls ssl"
BDEPEND="nls? ( sys-devel/gettext )"
RDEPEND="ssl? ( net-libs/gnutls )"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-0.6.2-respect-destdir.patch"
"${FILESDIR}/${PN}-0.6-respectldflags.patch"
"${FILESDIR}/${PN}-fix-crash.patch"
"${FILESDIR}/${PN}-0.6.2-fno-common.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}"
}
|