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

(-)www/swish++/Makefile (-4 / +2 lines)
Lines 7-16 Link Here
7
#
7
#
8
8
9
PORTNAME=	swish++
9
PORTNAME=	swish++
10
PORTVERSION=	6.1.4
10
PORTVERSION=	6.1.5
11
CATEGORIES=	www textproc
11
CATEGORIES=	www textproc
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	SF/swishplusplus
13
MASTER_SITE_SUBDIR=	swishplusplus
14
13
15
MAINTAINER=	ports@FreeBSD.org
14
MAINTAINER=	ports@FreeBSD.org
16
COMMENT=	Simple Web Indexing System for Humans: C++ version
15
COMMENT=	Simple Web Indexing System for Humans: C++ version
Lines 19-25 Link Here
19
18
20
USE_PERL5=	yes
19
USE_PERL5=	yes
21
USE_GMAKE=	yes
20
USE_GMAKE=	yes
22
USE_GCC=	3.4+
23
MAKEFILE=	GNUmakefile
21
MAKEFILE=	GNUmakefile
24
MAKE_ENV=	PTHREAD_LIBS=${PTHREAD_LIBS} \
22
MAKE_ENV=	PTHREAD_LIBS=${PTHREAD_LIBS} \
25
		PERL=${PERL} PERL_VER=${PERL_VER}
23
		PERL=${PERL} PERL_VER=${PERL_VER}
(-)www/swish++/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (swish++-6.1.4.tar.gz) = 08c0eac88e4f08c353037b893e243268
1
MD5 (swish++-6.1.5.tar.gz) = af755e4c7477fd1c05634596d6a9ff00
2
SHA256 (swish++-6.1.4.tar.gz) = 35e2c3d98a0cfd8c9fac45b7e12d13462e2521f025daac81045e697f403721f7
2
SHA256 (swish++-6.1.5.tar.gz) = 497b7d1f5dada146b74d82f787a1767a3713402e018b1e693cb7f6191db88d86
3
SIZE (swish++-6.1.4.tar.gz) = 302123
3
SIZE (swish++-6.1.5.tar.gz) = 320082
(-)www/swish++/files/patch-elements.c (-11 lines)
Lines 1-11 Link Here
1
--- mod/html/elements.c.orig	2007-07-31 20:12:01.000000000 +0200
2
+++ mod/html/elements.c	2007-07-31 20:12:22.000000000 +0200
3
@@ -295,7 +295,7 @@
4
         // become overly pedantic about casting to enums.
5
         //
6
         element::end_tag_type const
7
-            v = (element::end_tag_type const)(int const)(p[1]);
8
+            v = (element::end_tag_type const)(intptr_t const)(p[1]);
9
         element &e = insert( value_type( *p++, element( v ) ) ).first->second;
10
 
11
         switch ( v ) {

Return to bug 121091