aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvanilla <vanilla@FreeBSD.org>2004-10-14 14:35:37 +0800
committervanilla <vanilla@FreeBSD.org>2004-10-14 14:35:37 +0800
commit2a322f747cf439908136bfc7122dcd54e947329c (patch)
tree837ed8da2f4f3a2dd6934fe4f17c886b0ec5531f
parent33bfef0d2a6ed91a5acc30d4e5f568015f09e875 (diff)
downloadfreebsd-ports-gnome-2a322f747cf439908136bfc7122dcd54e947329c.tar.gz
freebsd-ports-gnome-2a322f747cf439908136bfc7122dcd54e947329c.tar.zst
freebsd-ports-gnome-2a322f747cf439908136bfc7122dcd54e947329c.zip
Upgrade to 1.1.2.
-rw-r--r--graphics/imlib2/Makefile4
-rw-r--r--graphics/imlib2/distinfo4
-rw-r--r--graphics/imlib2/files/patch-loader_bmp.c47
-rw-r--r--graphics/imlib2_loaders/Makefile2
-rw-r--r--graphics/imlib2_loaders/distinfo4
5 files changed, 7 insertions, 54 deletions
diff --git a/graphics/imlib2/Makefile b/graphics/imlib2/Makefile
index e1eb24e0b393..40865f1f9242 100644
--- a/graphics/imlib2/Makefile
+++ b/graphics/imlib2/Makefile
@@ -6,8 +6,8 @@
#
PORTNAME= imlib2
-PORTVERSION= 1.1.1
-PORTREVISION= 1
+PORTVERSION= 1.1.2
+PORTREVISION= 0
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= enlightenment
diff --git a/graphics/imlib2/distinfo b/graphics/imlib2/distinfo
index b4d438bf5e21..0f60b7cbfda3 100644
--- a/graphics/imlib2/distinfo
+++ b/graphics/imlib2/distinfo
@@ -1,2 +1,2 @@
-MD5 (imlib2-1.1.1.tar.gz) = 06b629285c163cd61a59db89377a0520
-SIZE (imlib2-1.1.1.tar.gz) = 871202
+MD5 (imlib2-1.1.2.tar.gz) = 3389bad516032c951fda4fe620df0cef
+SIZE (imlib2-1.1.2.tar.gz) = 875843
diff --git a/graphics/imlib2/files/patch-loader_bmp.c b/graphics/imlib2/files/patch-loader_bmp.c
deleted file mode 100644
index ac490d37ec92..000000000000
--- a/graphics/imlib2/files/patch-loader_bmp.c
+++ /dev/null
@@ -1,47 +0,0 @@
-===================================================================
-RCS file: /cvsroot/enlightenment/e17/libs/imlib2/loaders/loader_bmp.c,v
-retrieving revision 1.13
-retrieving revision 1.15
-diff -u -r1.13 -r1.15
---- loaders/loader_bmp.c 2004/02/09 01:26:03 1.13
-+++ loaders/loader_bmp.c 2004/08/28 03:34:05 1.15
-@@ -111,6 +111,11 @@
- fseek(f, 8, SEEK_CUR);
- ReadleLong(f, &offset);
- ReadleLong(f, &headSize);
-+ if (offset >= size)
-+ {
-+ fclose(f);
-+ return 0;
-+ }
- if (headSize == 12)
- {
- ReadleShort(f, &tmpShort);
-@@ -139,6 +144,12 @@
- fclose(f);
- return 0;
- }
-+
-+ if ((w > 8192) || (h > 8192))
-+ {
-+ fclose(f);
-+ return 0;
-+ }
-
- if (bitcount < 16)
- {
-@@ -146,12 +157,14 @@
- if (headSize == 12)
- {
- ncols /= 3;
-+ if (ncols > 256) ncols = 256;
- for (i = 0; i < ncols; i++)
- fread(&rgbQuads[i], 3, 1, f);
- }
- else
- {
- ncols /= 4;
-+ if (ncols > 256) ncols = 256;
- fread(rgbQuads, 4, ncols, f);
- }
- }
diff --git a/graphics/imlib2_loaders/Makefile b/graphics/imlib2_loaders/Makefile
index 1b17366c815f..baabe43cbb8a 100644
--- a/graphics/imlib2_loaders/Makefile
+++ b/graphics/imlib2_loaders/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= imlib2_loaders
-PORTVERSION= 1.1.1
+PORTVERSION= 1.1.2
PORTREVISION= 0
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
diff --git a/graphics/imlib2_loaders/distinfo b/graphics/imlib2_loaders/distinfo
index 055a5539fa87..6aa16270e115 100644
--- a/graphics/imlib2_loaders/distinfo
+++ b/graphics/imlib2_loaders/distinfo
@@ -1,2 +1,2 @@
-MD5 (imlib2_loaders-1.1.1.tar.gz) = d6dd0fe63ebf7d08a177c477d000cf55
-SIZE (imlib2_loaders-1.1.1.tar.gz) = 308639
+MD5 (imlib2_loaders-1.1.2.tar.gz) = 093664396dd3a0de3218993d3f5422b8
+SIZE (imlib2_loaders-1.1.2.tar.gz) = 308382