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

(-)Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	${UPPORTNAME:L}
8
PORTNAME=	${UPPORTNAME:L}
9
PORTVERSION=	9.00
9
PORTVERSION=	9.01
10
CATEGORIES=	finance
10
CATEGORIES=	finance
11
MASTER_SITES=	SF/${PORTNAME}/OTS_${TAXYEAR}/v${PORTVERSION}
11
MASTER_SITES=	SF/${PORTNAME}/OTS_${TAXYEAR}/v${PORTVERSION}
12
DISTNAME=	${UPPORTNAME}${TAXYEAR}_${PORTVERSION}
12
DISTNAME=	${UPPORTNAME}${TAXYEAR}_${PORTVERSION}
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (OpenTaxSolver2011_9.00.tgz) = 6be62226625795f11d6c1aab6dcd1d3d3628424d9f0c1fca8ea357c891b44758
1
SHA256 (OpenTaxSolver2011_9.01.tgz) = acd28964b616559b16af160368cf649883add2aeabd3817dcbcb8385c27c5220
2
SIZE (OpenTaxSolver2011_9.00.tgz) = 499595
2
SIZE (OpenTaxSolver2011_9.01.tgz) = 502241
(-)files/patch-src-GUI-otk_lib-otk_lib.c (-1 / +1 lines)
Lines 11-14 $FreeBSD: ports/finance/opentaxsolver/fi Link Here
11
+
11
+
12
 #include "otk_lib.h"
12
 #include "otk_lib.h"
13
 
13
 
14
 int Otk_verbose=0;
14
 // #include "scz_compress/scz.h"              /* Optionally, include self-contained decompression library. */
(-)files/patch-src-GUI-ots_gui.c (-9 lines)
Lines 106-117 $FreeBSD: ports/finance/opentaxsolver/fi Link Here
106
  invocation_path = strdup(argv[0]);
106
  invocation_path = strdup(argv[0]);
107
  k = strlen(invocation_path)-1;
107
  k = strlen(invocation_path)-1;
108
  while ((k>0) && (invocation_path[k]!=slashchr)) k--;
108
  while ((k>0) && (invocation_path[k]!=slashchr)) k--;
109
@@ -1436,7 +1436,7 @@
110
   OtkMakeImagePanel_ImgPtr( subpanel, logo_image, 1.5, 5.0, 96.8, 89.85 );
111
  }
112
 #else
113
- sprintf(tmpstr,"%s..%csrc%cGUI%cotslogo.ppm", invocation_path, slashchr, slashchr, slashchr );
114
+ snprintf(tmpstr, sizeof(tmpstr), "%%PREFIX%%/share/ots/otslogo.ppm");
115
  testfile = fopen(tmpstr,"r");	/* External image-file. */
116
  if (testfile!=0)
117
   { /* Only attempt to show image if image-file is where we expect to find it. */

Return to bug 166164