aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/lftp/Makefile
blob: 2cd63afc9dcaaff284a3662950689cb7e62a40a3 (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Created by: Andrey Zakhvatov
# $FreeBSD$

PORTNAME=   lftp
PORTVERSION=    4.7.4
CATEGORIES= ftp ipv6
MASTER_SITES=   http://lftp.yar.ru/ftp/ \
        http://lftp.yar.ru/ftp/old/ \
        http://lftp.cybermirror.org/ \
        http://lftp.cybermirror.org/old/ \
        http://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/ \
        http://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/old/ \
        http://ftp.tuwien.ac.at/infosys/browsers/ftp/lftp/ \
        ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/

MAINTAINER= martymac@FreeBSD.org
COMMENT=    Shell-like command line ftp client

LICENSE=    GPLv3
LICENSE_FILE=   ${WRKSRC}/COPYING

LIB_DEPENDS=    libexpat.so:textproc/expat2 \
        libidn.so:dns/libidn

USES=       charsetfix iconv libtool localbase readline shebangfix
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= ac_cv_type_max_align_t=yes

PORTDOCS=   AUTHORS BUGS ChangeLog FAQ FEATURES INSTALL \
        MIRRORS NEWS README README.debug-levels README.modules \
        THANKS TODO

SHEBANG_FILES=  src/verify-file \
        src/convert-mozilla-cookies \
        src/xdg-move

OPTIONS_DEFINE= DOCS NLS
OPTIONS_RADIO=  SSL
OPTIONS_RADIO_SSL=  OPENSSL GNUTLS
OPTIONS_DEFAULT=    SSL OPENSSL
OPTIONS_SUB=    yes
NLS_USES=   gettext
NLS_CONFIGURE_ENABLE=   nls
OPENSSL_CONFIGURE_WITH= openssl
OPENSSL_USES=   ssl
GNUTLS_CONFIGURE_WITH=  gnutls
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
GNUTLS_USES=    pkgconfig

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MOPENSSL}
. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015
WITH_OPENSSL_PORT=  yes
CONFIGURE_ARGS+=    --with-openssl=${OPENSSLBASE}
. endif
.endif

post-install:
    ${MV} ${STAGEDIR}${PREFIX}/etc/lftp.conf \
        ${STAGEDIR}${PREFIX}/etc/lftp.conf.sample

post-install-DOCS-on:
    ${MKDIR} ${STAGEDIR}${DOCSDIR}
    ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>