Index: devel/stfl/Makefile =================================================================== --- devel/stfl/Makefile (revision 528814) +++ devel/stfl/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= stfl PORTVERSION= 0.24 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.clifford.at/stfl/ @@ -38,5 +39,6 @@ post-install: ${LN} -s libstfl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libstfl.so.0 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libstfl.so.${PORTVERSION} .include Index: devel/stfl/files/patch-base.c =================================================================== --- devel/stfl/files/patch-base.c (nonexistent) +++ devel/stfl/files/patch-base.c (working copy) @@ -0,0 +1,19 @@ +https://github.com/newsboat/newsboat/issues/506 + +--- base.c.orig 2015-01-05 10:50:54 UTC ++++ base.c +@@ -750,9 +750,11 @@ unsigned int stfl_print_richtext(struct stfl_widget *w + wmemcpy(stylename, p1 + 1, p2 - p1 - 1); + stylename[p2 - p1 - 1] = L'\0'; + if (wcscmp(stylename,L"")==0) { +- mvwaddnwstr(win, y, x, L"<", 1); +- retval += 1; +- ++x; ++ if (end_col - x > 0) { ++ mvwaddnwstr(win, y, x, L"<", 1); ++ retval += 1; ++ ++x; ++ } + } else if (wcscmp(stylename, L"/")==0) { + stfl_style(win, style_normal); + } else { Property changes on: devel/stfl/files/patch-base.c ___________________________________________________________________ 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