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

(-)games/freecell-solver/Makefile (-1 / +7 lines)
Lines 7-13 Link Here
7
#
7
#
8
8
9
PORTNAME=	freecell-solver
9
PORTNAME=	freecell-solver
10
PORTVERSION=	2.26.0
10
PORTVERSION=	2.28.1
11
CATEGORIES=	games
11
CATEGORIES=	games
12
MASTER_SITES=	http://freebsd.unixfreunde.de/sources/ \
12
MASTER_SITES=	http://freebsd.unixfreunde.de/sources/ \
13
		BERLIOS/fc-solve
13
		BERLIOS/fc-solve
Lines 18-25 Link Here
18
OPTIONS=	JUDY "Use libJudy for states and stacks storage" off \
18
OPTIONS=	JUDY "Use libJudy for states and stacks storage" off \
19
		REDBLACK "Use libredblack for states and stacks storage" off
19
		REDBLACK "Use libredblack for states and stacks storage" off
20
20
21
USE_BZIP2=	yes
21
USE_PERL5_BUILD=	yes
22
USE_PERL5_BUILD=	yes
22
USE_CMAKE=	yes
23
USE_CMAKE=	yes
24
CMAKE_USE_PTHREAD=	yes
23
USE_LDCONFIG=	yes
25
USE_LDCONFIG=	yes
24
26
25
MAN6=	fc-solve-board_gen.6 \
27
MAN6=	fc-solve-board_gen.6 \
Lines 49-54 Link Here
49
.endif
51
.endif
50
52
51
post-install:
53
post-install:
54
.for file in freecell-solver-fc-pro-range-solve \
55
	freecell-solver-multi-thread-solve
56
	${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin
57
.endfor
52
.if !defined(NOPORTDOCS)
58
.if !defined(NOPORTDOCS)
53
	@${MKDIR} ${DOCSDIR}
59
	@${MKDIR} ${DOCSDIR}
54
.for file in AUTHORS INSTALL README README.win32.txt TODO USAGE
60
.for file in AUTHORS INSTALL README README.win32.txt TODO USAGE
(-)games/freecell-solver/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (freecell-solver-2.26.0.tar.gz) = df5343ac6206d80e29c5ef237af5869c
1
MD5 (freecell-solver-2.28.1.tar.bz2) = 2d55cda91ecde5fb9bae4dad9c8d6d65
2
SHA256 (freecell-solver-2.26.0.tar.gz) = 86f38682f35163de31ad818d82442a7efa103cafe25ddef40e26e8cd73813526
2
SHA256 (freecell-solver-2.28.1.tar.bz2) = 7fabbb22aa657054e18fae2d9cebb366ed3515fdd68104a9a5a7f2bae4c1c067
3
SIZE (freecell-solver-2.26.0.tar.gz) = 284372
3
SIZE (freecell-solver-2.28.1.tar.bz2) = 219138
(-)games/freecell-solver/files/patch-CMakeLists.txt (-3 / +11 lines)
Lines 1-6 Link Here
1
--- CMakeLists.txt.orig	2009-02-19 11:27:44.292036727 -0500
1
--- CMakeLists.txt.orig	2009-05-17 22:25:52.000000000 +0900
2
+++ CMakeLists.txt	2009-02-19 11:28:03.932046002 -0500
2
+++ CMakeLists.txt	2009-05-18 06:05:22.000000000 +0900
3
@@ -156,18 +156,6 @@
3
@@ -257,7 +257,6 @@
4
 
5
 IF (CMAKE_USE_PTHREADS_INIT)
6
     FCS_ADD_EXEC(freecell-solver-multi-thread-solve threaded_range_solver.c)
7
-    TARGET_LINK_LIBRARIES(freecell-solver-multi-thread-solve "pthread")
8
 ENDIF (CMAKE_USE_PTHREADS_INIT)
9
 
10
 IF (MY_LINK_FLAGS)
11
@@ -329,18 +328,6 @@
4
 
12
 
5
 INSTALL(
13
 INSTALL(
6
     FILES
14
     FILES
(-)games/freecell-solver/files/patch-caas.c (+11 lines)
Line 0 Link Here
1
--- caas.c.orig	2009-05-18 18:49:56.000000000 +0900
2
+++ caas.c	2009-05-18 23:10:59.000000000 +0900
3
@@ -236,7 +236,7 @@
4
             PValue,
5
             instance->stacks_judy_array,
6
             new_state_key->stacks[a],
7
-            (fcs_stack_len(*new_state_key, a)+1)
8
+            col_len
9
         );
10
         /* TODO : Handle out-of-memory. */
11
         if (*PValue == 0)
(-)games/freecell-solver/pkg-plist (+2 lines)
Lines 1-5 Link Here
1
bin/fc-solve
1
bin/fc-solve
2
bin/freecell-solver-config
2
bin/freecell-solver-config
3
bin/freecell-solver-fc-pro-range-solve
4
bin/freecell-solver-multi-thread-solve
3
bin/freecell-solver-range-parallel-solve
5
bin/freecell-solver-range-parallel-solve
4
bin/make-aisleriot-freecell-board
6
bin/make-aisleriot-freecell-board
5
bin/make-gnome-freecell-board
7
bin/make-gnome-freecell-board

Return to bug 135032