40 lines
1,022 B
Bash
40 lines
1,022 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id: 21c59d63ff03b3edf40fae9208d98ae1b78f8988 $
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A tiny, wget-alike program, that is designed to upload files/whole directories to remote ftp-servers"
|
|
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"
|
|
|
|
RDEPEND="ssl? ( net-libs/gnutls )"
|
|
DEPEND="${RDEPEND}
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${FILESDIR}/${PN}-0.6-gentoo.diff"
|
|
# Fix bug 126828
|
|
epatch "${FILESDIR}/wput-0.6-respectldflags.patch"
|
|
}
|
|
|
|
src_compile() {
|
|
local myconf
|
|
use debug && myconf="--enable-memdbg=yes" || myconf="--enable-g-switch=no"
|
|
econf ${myconf} \
|
|
$(use_enable nls) \
|
|
$(use_with ssl) || die "econf failed"
|
|
emake || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "make install failed"
|
|
dodoc ChangeLog INSTALL TODO
|
|
}
|