summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Briesenick <sbriesen@gentoo.org>2010-07-20 23:18:10 +0000
committerStefan Briesenick <sbriesen@gentoo.org>2010-07-20 23:18:10 +0000
commita06b367043572595bcc002a16fce062cf4ac7765 (patch)
treef55e0ba9e2efe67a7bffba2e110cc684aabb7dbc /app-text/mbtpdfasm
parentVersion bumped, bug #328931. (diff)
downloadgentoo-2-a06b367043572595bcc002a16fce062cf4ac7765.tar.gz
gentoo-2-a06b367043572595bcc002a16fce062cf4ac7765.tar.bz2
gentoo-2-a06b367043572595bcc002a16fce062cf4ac7765.zip
removed old version, take 2.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-text/mbtpdfasm')
-rw-r--r--app-text/mbtpdfasm/ChangeLog6
-rw-r--r--app-text/mbtpdfasm/files/mbtpdfasm-1.0.26-64bit.patch44
2 files changed, 5 insertions, 45 deletions
diff --git a/app-text/mbtpdfasm/ChangeLog b/app-text/mbtpdfasm/ChangeLog
index 9bc63c7e24a2..e260adbf339a 100644
--- a/app-text/mbtpdfasm/ChangeLog
+++ b/app-text/mbtpdfasm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/mbtpdfasm
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mbtpdfasm/ChangeLog,v 1.6 2010/07/20 23:16:16 sbriesen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/mbtpdfasm/ChangeLog,v 1.7 2010/07/20 23:18:09 sbriesen Exp $
+
+ 20 Jul 2010; Stefan Briesenick <sbriesen@gentoo.org>
+ -files/mbtpdfasm-1.0.26-64bit.patch:
+ removed old version, take 2.
20 Jul 2010; Stefan Briesenick <sbriesen@gentoo.org>
-mbtpdfasm-1.0.26-r1.ebuild, -mbtpdfasm-1.0.26-r2.ebuild,
diff --git a/app-text/mbtpdfasm/files/mbtpdfasm-1.0.26-64bit.patch b/app-text/mbtpdfasm/files/mbtpdfasm-1.0.26-64bit.patch
deleted file mode 100644
index 25573466f0b9..000000000000
--- a/app-text/mbtpdfasm/files/mbtpdfasm-1.0.26-64bit.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- pdfFile.hpp.orig 2006-06-12 00:01:12.000000000 +0200
-+++ pdfFile.hpp 2006-06-12 00:09:46.000000000 +0200
-@@ -158,7 +158,7 @@
-
- //int findInheritRes(C_pdfFile *org, char *fBuf, int lg, char **pcRes);
- int makeRes(C_pdfFile *org, char *fBuf, int lg, char **pcRes);
-- int makeAttrib(C_pdfFile *org, char *fBuf, int lgOrgBuf, char **pcRes, char *add, int lgAdd);
-+ int makeAttrib(C_pdfFile *org, char *fBuf, int lgOrgBuf, char **pcRes, int add, int lgAdd);
-
- bool fast; // version rapide, on ne gère pas les options
- bool closed; //protection plus rien n'est possible aprés l'appel à la fonction close
---- pdfFile.cpp.orig 2006-06-12 00:01:23.000000000 +0200
-+++ pdfFile.cpp 2006-06-12 00:11:49.000000000 +0200
-@@ -906,7 +906,7 @@
- /* ********************************************** */
- #pragma warning(disable : 4100)
-
--int C_pdfFile::makeAttrib(C_pdfFile *org, char *buf, int lgOrgBuf, char **pcRes, char *add, int lgAdd) {
-+int C_pdfFile::makeAttrib(C_pdfFile *org, char *buf, int lgOrgBuf, char **pcRes, int add, int lgAdd) {
- char *pc;
- int lgRes, lgBuf, j, nObj, r;
-
-@@ -945,12 +945,12 @@
- }
-
- if ( (lgAdd != 0) && (add != 0) ) {
-- switch ( (int)add ) {
-+ switch ( add ) {
- case _Resources:
-
- break;
- default:
-- memcpy(pc + lgRes, add + sizeof(int), lgAdd);
-+ memcpy(pc + lgRes, (char *)add + sizeof(int), lgAdd);
- lgRes += lgAdd;
- }
- }
-@@ -2663,4 +2663,4 @@
- delete p;
-
- return destBuf;
--}
-\ Kein Zeilenumbruch am Dateiende.
-+}