summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2003-06-03 11:53:35 +0000
committerMarinus Schraal <foser@gentoo.org>2003-06-03 11:53:35 +0000
commita4ca1361dbe22c00acc5dfaf1f6cef3c640795a4 (patch)
tree1fb35adcb57045371f96bbb6fe14dcea90d3c0c2 /app-text/ggv/files
parentnew version 'n cleanup (diff)
downloadgentoo-2-a4ca1361dbe22c00acc5dfaf1f6cef3c640795a4.tar.gz
gentoo-2-a4ca1361dbe22c00acc5dfaf1f6cef3c640795a4.tar.bz2
gentoo-2-a4ca1361dbe22c00acc5dfaf1f6cef3c640795a4.zip
new version 'n cleanup
Diffstat (limited to 'app-text/ggv/files')
-rw-r--r--app-text/ggv/files/digest-ggv-1.99.951
-rw-r--r--app-text/ggv/files/digest-ggv-2.0.11
-rw-r--r--app-text/ggv/files/ggv-1.99.90-r1-gentoo.diff152
3 files changed, 1 insertions, 153 deletions
diff --git a/app-text/ggv/files/digest-ggv-1.99.95 b/app-text/ggv/files/digest-ggv-1.99.95
deleted file mode 100644
index 5f33125aebb9..000000000000
--- a/app-text/ggv/files/digest-ggv-1.99.95
+++ /dev/null
@@ -1 +0,0 @@
-MD5 206ff03b5ced2b7171d9a8edec5b99ae ggv-1.99.95.tar.bz2 581660
diff --git a/app-text/ggv/files/digest-ggv-2.0.1 b/app-text/ggv/files/digest-ggv-2.0.1
new file mode 100644
index 000000000000..8fa4a3274122
--- /dev/null
+++ b/app-text/ggv/files/digest-ggv-2.0.1
@@ -0,0 +1 @@
+MD5 29aefe42e3f81f9ba65b8e3befb958bd ggv-2.0.1.tar.bz2 905601
diff --git a/app-text/ggv/files/ggv-1.99.90-r1-gentoo.diff b/app-text/ggv/files/ggv-1.99.90-r1-gentoo.diff
deleted file mode 100644
index d5283539f352..000000000000
--- a/app-text/ggv/files/ggv-1.99.90-r1-gentoo.diff
+++ /dev/null
@@ -1,152 +0,0 @@
-Index: ps.c
-===================================================================
-RCS file: /cvs/gnome/ggv/src/ps.c,v
-retrieving revision 1.12
-retrieving revision 1.13
-diff -u -r1.12 -r1.13
---- src/ps.c 19 Jun 2002 16:56:05 -0000 1.12
-+++ src/ps.c 26 Sep 2002 22:27:53 -0000 1.13
-@@ -267,7 +267,7 @@
-
- /* Jake Hamby patch 18/3/98 */
-
-- sscanf(line, "%*s %s", text);
-+ sscanf(line, "%*s %256s", text);
- /*doc->epsf = iscomment(text, "EPSF-");*/
- doc->epsf = iscomment(text, "EPSF"); /* Hamby - This line changed */
- doc->beginheader = position;
-@@ -308,7 +308,7 @@
- } else if (doc->date == NULL && iscomment(line+2, "CreationDate:")) {
- doc->date = gettextline(line+length("%%CreationDate:"));
- } else if (bb_set == NONE && iscomment(line+2, "BoundingBox:")) {
-- sscanf(line+length("%%BoundingBox:"), "%s", text);
-+ sscanf(line+length("%%BoundingBox:"), "%256s", text);
- if (strcmp(text, "(atend)") == 0) {
- bb_set = ATEND;
- } else {
-@@ -340,7 +340,7 @@
- }
- } else if (orientation_set == NONE &&
- iscomment(line+2, "Orientation:")) {
-- sscanf(line+length("%%Orientation:"), "%s", text);
-+ sscanf(line+length("%%Orientation:"), "%256s", text);
- if (strcmp(text, "(atend)") == 0) {
- orientation_set = ATEND;
- } else if (strcmp(text, "Portrait") == 0) {
-@@ -355,7 +355,7 @@
- orientation_set = 1;
- }
- } else if (page_order_set == NONE && iscomment(line+2, "PageOrder:")) {
-- sscanf(line+length("%%PageOrder:"), "%s", text);
-+ sscanf(line+length("%%PageOrder:"), "%256s", text);
- if (strcmp(text, "(atend)") == 0) {
- page_order_set = ATEND;
- } else if (strcmp(text, "Ascend") == 0) {
-@@ -369,7 +369,7 @@
- page_order_set = 1;
- }
- } else if (pages_set == NONE && iscomment(line+2, "Pages:")) {
-- sscanf(line+length("%%Pages:"), "%s", text);
-+ sscanf(line+length("%%Pages:"), "%256s", text);
- if (strcmp(text, "(atend)") == 0) {
- pages_set = ATEND;
- } else {
-@@ -568,7 +568,7 @@
- /* Do nothing */
- } else if (doc->default_page_orientation == NONE &&
- iscomment(line+2, "PageOrientation:")) {
-- sscanf(line+length("%%PageOrientation:"), "%s", text);
-+ sscanf(line+length("%%PageOrientation:"), "%256s", text);
- if (strcmp(text, "Portrait") == 0) {
- doc->default_page_orientation = GTK_GS_ORIENTATION_PORTRAIT;
- } else if (strcmp(text, "Landscape") == 0) {
-@@ -695,7 +695,7 @@
- /* Do nothing */
- } else if (doc->default_page_orientation == NONE &&
- iscomment(line+2, "PageOrientation:")) {
-- sscanf(line+length("%%PageOrientation:"), "%s", text);
-+ sscanf(line+length("%%PageOrientation:"), "%256s", text);
- if (strcmp(text, "Portrait") == 0) {
- doc->default_page_orientation = GTK_GS_ORIENTATION_PORTRAIT;
- } else if (strcmp(text, "Landscape") == 0) {
-@@ -837,7 +837,7 @@
- /* Do nothing */
- } else if (doc->pages[doc->numpages].orientation == NONE &&
- iscomment(line+2, "PageOrientation:")) {
-- sscanf(line+length("%%PageOrientation:"), "%s", text);
-+ sscanf(line+length("%%PageOrientation:"), "%256s", text);
- if (strcmp(text, "Portrait") == 0) {
- doc->pages[doc->numpages].orientation = GTK_GS_ORIENTATION_PORTRAIT;
- } else if (strcmp(text, "Landscape") == 0) {
-@@ -872,7 +872,7 @@
- g_free(cp);
- } else if ((page_bb_set == NONE || page_bb_set == ATEND) &&
- iscomment(line+2, "PageBoundingBox:")) {
-- sscanf(line+length("%%PageBoundingBox:"), "%s", text);
-+ sscanf(line+length("%%PageBoundingBox:"), "%256s", text);
- if (strcmp(text, "(atend)") == 0) {
- page_bb_set = ATEND;
- } else {
-@@ -986,7 +986,7 @@
- }
- } else if (orientation_set == ATEND &&
- iscomment(line+2, "Orientation:")) {
-- sscanf(line+length("%%Orientation:"), "%s", text);
-+ sscanf(line+length("%%Orientation:"), "%256s", text);
- if (strcmp(text, "Portrait") == 0) {
- doc->orientation = GTK_GS_ORIENTATION_PORTRAIT;
- } else if (strcmp(text, "Landscape") == 0) {
-@@ -996,7 +996,7 @@
- doc->orientation = GTK_GS_ORIENTATION_SEASCAPE;
- }
- } else if (page_order_set == ATEND && iscomment(line+2, "PageOrder:")) {
-- sscanf(line+length("%%PageOrder:"), "%s", text);
-+ sscanf(line+length("%%PageOrder:"), "%256s", text);
- if (strcmp(text, "Ascend") == 0) {
- doc->pageorder = ASCEND;
- } else if (strcmp(text, "Descend") == 0) {
-@@ -1278,7 +1278,7 @@
- else if IS_BEGIN("Data:") {
- text[0] = '\0';
- strcpy(save, line+7);
-- if (sscanf(line+length("%%BeginData:"), "%d %*s %s", &num, text) >= 1) {
-+ if (sscanf(line+length("%%BeginData:"), "%d %*s %256s", &num, text) >= 1) {
- if (strcmp(text, "Lines") == 0) {
- for (i=0; i < num; i++) {
- cp = fgets(line, size, fp);
-@@ -1402,7 +1402,7 @@
- } else if (iscomment(line+7, "Data:")) {
- text[0] = '\0';
- strcpy(save, line+7);
-- if (sscanf(line+length("%%BeginData:"), "%d %*s %s", &num, text) >= 1) {
-+ if (sscanf(line+length("%%BeginData:"), "%d %*s %256s", &num, text) >= 1) {
- if (strcmp(text, "Lines") == 0) {
- for (i=0; i < num; i++) {
- cp = fgets(line, size, fp);
-@@ -1477,7 +1477,7 @@
- } else if (iscomment(line+7, "Data:")) {
- text[0] = '\0';
- if (sscanf(line+length("%%BeginData:"),
-- "%d %*s %s", &num, text) >= 1) {
-+ "%d %*s %256s", &num, text) >= 1) {
- if (strcmp(text, "Lines") == 0) {
- for (i=0; i < num; i++) {
- fgets(line, sizeof(line), from);
-@@ -1546,7 +1546,7 @@
- } else if (iscomment(line+7, "Data:")) {
- text[0] = '\0';
- if (sscanf(line+length("%%BeginData:"),
-- "%d %*s %s", &num, text) >= 1) {
-+ "%d %*s %256s", &num, text) >= 1) {
- if (strcmp(text, "Lines") == 0) {
- for (i=0; i < num; i++) {
- fgets(line, sizeof line, from);
-@@ -1624,7 +1624,7 @@
- g_free(comment);
- continue;
- }
-- sscanf(comment+length("%%Pages:"), "%s", text);
-+ sscanf(comment+length("%%Pages:"), "%256s", text);
- if (strcmp(text, "(atend)") == 0) {
- gtk_gs_doc_sink_write(dest, comment, strlen(comment));
- pages_atend = TRUE;