aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/lftp
diff options
context:
space:
mode:
authorreg <reg@FreeBSD.org>2000-10-01 17:33:41 +0800
committerreg <reg@FreeBSD.org>2000-10-01 17:33:41 +0800
commit88d0a9ecc91585e955b4476ff6bf47f5fc4c2bc6 (patch)
tree8413d38e166a57b723c4c84754374710bd7ed587 /ftp/lftp
parentea8ba691873061f8ea57364a735a0db147e5bcce (diff)
downloadfreebsd-ports-gnome-88d0a9ecc91585e955b4476ff6bf47f5fc4c2bc6.tar.gz
freebsd-ports-gnome-88d0a9ecc91585e955b4476ff6bf47f5fc4c2bc6.tar.zst
freebsd-ports-gnome-88d0a9ecc91585e955b4476ff6bf47f5fc4c2bc6.zip
Use the gettext port. Remove an include which is already in the base
system. Approved by: maintainer
Diffstat (limited to 'ftp/lftp')
-rw-r--r--ftp/lftp/Makefile18
1 files changed, 11 insertions, 7 deletions
diff --git a/ftp/lftp/Makefile b/ftp/lftp/Makefile
index b2dfa3e9f0a9..f85ec5724166 100644
--- a/ftp/lftp/Makefile
+++ b/ftp/lftp/Makefile
@@ -14,22 +14,26 @@ MASTER_SITE_SUBDIR= system/network/file-transfer
MAINTAINER= cj@vallcom.net
-GNU_CONFIGURE= yes
+LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
+
USE_BZIP2= yes
USE_OPENSSL= yes
-CONFIGURE_ENV= CXXFLAGS="${CFLAGS}"
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-L${LOCALBASE}/lib"
MAN1= lftp.1
-post-extract:
- @ ${CP} ${FILESDIR}/nameser.h ${WRKSRC}/src
+pre-patch:
+ @${PERL} -pi -e 's|-lpthread|-pthread|g ; \
+ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
post-install:
- @ ${INSTALL_DATA} ${WRKSRC}/lftp.conf ${PREFIX}/etc/lftp.conf.sample
+ ${INSTALL_DATA} ${WRKSRC}/lftp.conf ${PREFIX}/etc/lftp.conf.sample
.if !defined(NOPORTDOCS)
- @ ${MKDIR} ${PREFIX}/share/doc/lftp
+ @${MKDIR} ${PREFIX}/share/doc/lftp
.for file in COPYING FAQ NEWS README THANKS TODO
- @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/lftp
+ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/lftp
.endfor
.endif