a9f015d155
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
40 lines
902 B
Makefile
40 lines
902 B
Makefile
# Created by: arved
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= newsboat
|
|
PORTVERSION= 2.13
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= r
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= mt@markoturk.info
|
|
COMMENT= RSS feed reader for the text console
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= a2x:textproc/asciidoc
|
|
LIB_DEPENDS= libstfl.so:devel/stfl \
|
|
libcurl.so:ftp/curl \
|
|
libjson-c.so:devel/json-c
|
|
|
|
USES= compiler:c++11-lib gettext gmake gnome iconv:translit ncurses \
|
|
pkgconfig sqlite shebangfix ssl
|
|
USE_GITHUB= yes
|
|
USE_CXXSTD= gnu++11
|
|
USE_GNOME= libxml2
|
|
|
|
MAKE_ARGS= mandir=${PREFIX}/man prefix=${PREFIX}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,fail "ncursesw",true,; s,fail "libcrypto",true,' \
|
|
${WRKSRC}/config.sh
|
|
${REINPLACE_CMD} -e 's|-liconv|${ICONV_LIB} -lcrypto -lncursesw|;s|-Werror||' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*boat
|
|
|
|
.include <bsd.port.mk>
|