diff options
Diffstat (limited to 'x11')
-rw-r--r-- | x11/yelp/Makefile | 3 | ||||
-rw-r--r-- | x11/yelp/files/patch-src_yelp-search-pager.c | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile index 58d837942..a6cb5c1e7 100644 --- a/x11/yelp/Makefile +++ b/x11/yelp/Makefile @@ -3,11 +3,12 @@ # Whom: Maxim Sobolev <sobomax@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/x11/yelp/Makefile,v 1.88 2006/04/16 13:36:49 ahze Exp $ +# $MCom: ports/x11/yelp/Makefile,v 1.90 2006/04/30 04:25:02 ahze Exp $ # PORTNAME= yelp PORTVERSION= 2.15.1 +PORTREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/x11/yelp/files/patch-src_yelp-search-pager.c b/x11/yelp/files/patch-src_yelp-search-pager.c new file mode 100644 index 000000000..81c275b4d --- /dev/null +++ b/x11/yelp/files/patch-src_yelp-search-pager.c @@ -0,0 +1,11 @@ +--- src/yelp-search-pager.c.orig Tue May 2 19:10:03 2006 ++++ src/yelp-search-pager.c Tue May 2 18:59:36 2006 +@@ -1413,7 +1413,7 @@ process_man_result (YelpSearchPager *pag + after = strstr (before, "("); + tmp = after; + +- while (!g_ascii_isspace(*tmp)) ++ while (g_ascii_isspace(*tmp)) + tmp--; + + title = g_strndup (before, tmp-before); |