mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
75c6a79d50
Changelog: https://github.com/newsboat/newsboat/blob/master/CHANGELOG.md PR: 229394 Submitted by: Marko Turk <mt@markoturk.info> (maintainer)
40 lines
880 B
Makefile
40 lines
880 B
Makefile
# Created by: arved
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= newsboat
|
|
PORTVERSION= 2.12
|
|
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 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>
|