diff options
author | edwin <edwin@FreeBSD.org> | 2005-11-24 00:06:21 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-11-24 00:06:21 +0000 |
commit | 7545ecdf9bfd0728d379d74805f84e6073c78a72 (patch) | |
tree | 739df998b9815f4695b19590d10422e1aedc3792 /graphics/guilib | |
parent | 3b010d534671bb764020517bc15b69f7482614d2 (diff) | |
download | FreeBSD-ports-7545ecdf9bfd0728d379d74805f84e6073c78a72.zip FreeBSD-ports-7545ecdf9bfd0728d379d74805f84e6073c78a72.tar.gz |
[PATCH] graphics/guilib remove broken size mismatch
- Correct size, md5
- Add SHA256
- Take maintainership
Changes in tarball:
diff -ru GUIlib-1.1.1-old/GUI_button.cpp GUIlib-1.1.1/GUI_button.cpp
--- GUIlib-1.1.1-old/GUI_button.cpp Thu Apr 6 14:48:51 2000
+++ GUIlib-1.1.1/GUI_button.cpp Fri Oct 21 14:00:59 2005
@@ -133,9 +133,9 @@
if (freebutton)
{
if (button)
- delete button;
+ SDL_FreeSurface(button);
if (button2)
- delete button2;
+ SDL_FreeSurface(button2);
}
if (freefont)
delete buttonFont;
PR: ports/89245
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
Diffstat (limited to 'graphics/guilib')
-rw-r--r-- | graphics/guilib/Makefile | 4 | ||||
-rw-r--r-- | graphics/guilib/distinfo | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/graphics/guilib/Makefile b/graphics/guilib/Makefile index fe5679f..bfaff19 100644 --- a/graphics/guilib/Makefile +++ b/graphics/guilib/Makefile @@ -12,11 +12,9 @@ CATEGORIES= graphics MASTER_SITES= http://www.libsdl.org/projects/GUIlib/src/ DISTNAME= GUIlib-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= acardenas@bsd.org.pe COMMENT= A very simple GUI framework for use with SDL -BROKEN= Size mismatch - USE_SDL= sdl USE_GMAKE= yes USE_AUTOTOOLS= libtool:15 diff --git a/graphics/guilib/distinfo b/graphics/guilib/distinfo index 50dc703..aadbf22 100644 --- a/graphics/guilib/distinfo +++ b/graphics/guilib/distinfo @@ -1,2 +1,3 @@ -MD5 (GUIlib-1.1.1.tar.gz) = 9d5d88cdb42dd8611e31f5e3f8a3084e -SIZE (GUIlib-1.1.1.tar.gz) = 179035 +MD5 (GUIlib-1.1.1.tar.gz) = 7ac15661310d2cde4c3ce72513b45535 +SHA256 (GUIlib-1.1.1.tar.gz) = dd4f21a69399c3fc12b9e517a49f3ab00f5f888440df62f7afaca8a01e1ea548 +SIZE (GUIlib-1.1.1.tar.gz) = 180324 |