View | Details | Raw Unified | Return to bug 216235
Collapse All | Expand All

(-)devel/silentbob/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	silentbob
4
PORTNAME=	silentbob
5
PORTVERSION=	3.0
5
PORTVERSION=	3.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}2/${PORTNAME}-${PORTVERSION:C@\.[0-9]+$@@}/
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}2/${PORTNAME}-${PORTVERSION:C@\.[0-9]+$@@}/
8
9
(-)devel/silentbob/files/patch-src_wit.cxx (+13 lines)
Line 0 Link Here
1
Fix bug of function being used instead of variable.
2
3
--- src/wit.cxx.orig	2017-01-21 21:29:59 UTC
4
+++ src/wit.cxx
5
@@ -18,7 +18,7 @@ int what_is_this (char * d_op, char ch)
6
 
7
 	d_words_count = words_count (d_op);
8
 
9
-	if (words_count <= 0)
10
+	if (d_words_count <= 0)
11
 		return OT::Other;
12
 	
13
 	if (d_words_count == 1) {

Return to bug 216235