sthen 25f0e460f2 Add COMPILER lines to c++ ports which currently use the default. Adjust
some existing COMPILER lines with arch restrictions etc. In the usual
case this is now using "COMPILER = base-clang ports-gcc base-gcc" on
ports with c++ libraries in WANTLIB.

This is basically intended to be a noop on architectures using clang
as the system compiler, but help with other architectures where we
currently have many ports knocked out due to building with an unsuitable
compiler -

- some ports require c++11/newer so the GCC version in base that is used
on these archirtectures is too old.

- some ports have conflicts where an executable is built with one compiler
(e.g. gcc from base) but a library dependency is built with a different
one (e.g. gcc from ports), resulted in mixing incompatible libraries in the
same address space.

devel/gmp is intentionally skipped as it's on the path to building gcc -
the c++ library there is unused in ports (and not built by default upstream)
so intending to disable building gmpcxx in a future commit.
2018-10-24 14:27:57 +00:00

45 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.123 2018/10/24 14:28:08 sthen Exp $
COMMENT= shell-like command line ftp and sftp client
DISTNAME= lftp-4.8.4
CATEGORIES= net
REVISION= 0
HOMEPAGE= https://lftp.tech/
MAINTAINER= Rafael Sadowski <rsadowski@openbsd.org>
# GPLv3+
PERMIT_PACKAGE_CDROM= Yes
WANTLIB += ${COMPILER_LIBCXX} c crypto curses ereadline expat
WANTLIB += iconv idn2 intl m ssl unistring util z
COMPILER = base-clang ports-gcc base-gcc
# lftp needs add_history_time()
LIB_DEPENDS= devel/libidn2 \
devel/gettext \
devel/readline>=6.1p2
MASTER_SITES= http://lftp.yar.ru/ftp/ \
ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/
LIBTOOL_FLAGS= --tag=disable-shared
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --with-openssl \
--without-gnutls \
--disable-shared
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/ereadline -I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
FAKE_FLAGS= sysconfdir=${PREFIX}/share/examples/lftp
post-install:
rm -rf ${PREFIX}/lib/liblftp-{jobs,tasks}.{a,la} \
${PREFIX}/share/{icons,applications}
.include <bsd.port.mk>