Index: head/www/newsbeuter/Makefile =================================================================== --- head/www/newsbeuter/Makefile (revision 448610) +++ head/www/newsbeuter/Makefile (revision 448611) @@ -1,49 +1,50 @@ # Created by: arved # $FreeBSD$ PORTNAME= newsbeuter PORTVERSION= 2.9 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www -MASTER_SITES= http://newsbeuter.org/downloads/ +MASTER_SITES= https://newsbeuter.org/downloads/ \ + http://newsbeuter.org/downloads/ MAINTAINER= arved@FreeBSD.org COMMENT= RSS feed reader for the text console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libstfl.so:devel/stfl \ libcurl.so:ftp/curl \ libjson-c.so:devel/json-c OPTIONS_DEFINE= PODCAST OPTIONS_DEFAULT=PODCAST OPTIONS_SUB= yes PODCAST_DESC= Podcast client (podbeuter) USES= compiler:c++11-lib gettext gmake iconv:translit ncurses perl5 \ - pkgconfig sqlite shebangfix + pkgconfig sqlite shebangfix ssl USE_CXXSTD= gnu++11 USE_PERL5= build SHEBANG_FILES= txt2h.pl USE_GNOME= libxml2 .include post-patch: ${REINPLACE_CMD} -e "s,share/man,man,; \ /^prefix/s|=.*|=${PREFIX}|; /^CXX=/d; \ s|/usr/local|${LOCALBASE}|; s|ruby1.8|ruby18|" \ ${WRKSRC}/Makefile ${REINPLACE_CMD} -e 's,,,' \ ${WRKSRC}/src/controller.cpp ${WRKSRC}/src/view.cpp ${REINPLACE_CMD} -e 's,fail "ncursesw",true,; s,fail "libcrypto",true,' \ ${WRKSRC}/config.sh ${REINPLACE_CMD} -e 's|-liconv|${ICONV_LIB} -lcrypto -lncursesw|' \ ${WRKSRC}/Makefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*beuter .include Index: head/www/newsbeuter/files/patch-controller.cpp =================================================================== --- head/www/newsbeuter/files/patch-controller.cpp (nonexistent) +++ head/www/newsbeuter/files/patch-controller.cpp (revision 448611) @@ -0,0 +1,15 @@ +--- src/controller.cpp ++++ src/controller.cpp +@@ -1275,9 +1275,10 @@ std::string controller::bookmark(const std::string& url, const std::string& titl + std::string bookmark_cmd = cfg.get_configvalue("bookmark-cmd"); + bool is_interactive = cfg.get_configvalue_as_bool("bookmark-interactive"); + if (bookmark_cmd.length() > 0) { +- std::string cmdline = utils::strprintf("%s '%s' %s %s", ++ std::string cmdline = utils::strprintf("%s '%s' '%s' '%s'", + bookmark_cmd.c_str(), utils::replace_all(url,"'", "%27").c_str(), +- stfl::quote(title).c_str(), stfl::quote(description).c_str()); ++ utils::replace_all(title,"'", "%27").c_str(), ++ utils::replace_all(description,"'", "%27").c_str()); + + LOG(LOG_DEBUG, "controller::bookmark: cmd = %s", cmdline.c_str()); + Property changes on: head/www/newsbeuter/files/patch-controller.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property