diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-12-25 12:44:27 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-12-25 12:44:27 +0000 |
commit | 4f8338556e4680e83b7760215ed7903a5bb72807 (patch) | |
tree | 7a9beaa4cedce766b564610ed4636107f32692e1 /graphics | |
parent | Properly support png 1.5 (diff) |
No proper support for png 1.5, abandoned upstream since 2003
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/corona/Makefile | 23 | ||||
-rw-r--r-- | graphics/corona/distinfo | 2 | ||||
-rw-r--r-- | graphics/corona/files/patch-OpenPNG.cpp | 19 | ||||
-rw-r--r-- | graphics/corona/files/patch-SavePNG.cpp | 9 | ||||
-rw-r--r-- | graphics/corona/pkg-descr | 8 | ||||
-rw-r--r-- | graphics/corona/pkg-plist | 6 |
7 files changed, 0 insertions, 68 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index b5a3d067ac5e..efb67e181a95 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -96,7 +96,6 @@ SUBDIR += commons-utilities SUBDIR += compupic SUBDIR += converseen - SUBDIR += corona SUBDIR += cosmoplayer SUBDIR += crw SUBDIR += cthumb diff --git a/graphics/corona/Makefile b/graphics/corona/Makefile deleted file mode 100644 index d079c4dd99d0..000000000000 --- a/graphics/corona/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# Created by: David Yeske <dyeske@gmail.com> -# $FreeBSD$ - -PORTNAME= corona -PORTVERSION= 1.0.2 -PORTREVISION= 6 -CATEGORIES= graphics -MASTER_SITES= SF - -MAINTAINER= ports@FreeBSD.org -COMMENT= Graphics library that supports most image formats - -LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ - libjpeg.so:${PORTSDIR}/graphics/jpeg - -GNU_CONFIGURE= yes -USES= libtool -USE_LDCONFIG= yes - -CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 -LDFLAGS+= -L${LOCALBASE}/lib - -.include <bsd.port.mk> diff --git a/graphics/corona/distinfo b/graphics/corona/distinfo deleted file mode 100644 index 7830dfb44175..000000000000 --- a/graphics/corona/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (corona-1.0.2.tar.gz) = 9e73c15c925ba17225bca1d1ca9f5382ebe45fb4685a0c70bd21bf26f536ac15 -SIZE (corona-1.0.2.tar.gz) = 233675 diff --git a/graphics/corona/files/patch-OpenPNG.cpp b/graphics/corona/files/patch-OpenPNG.cpp deleted file mode 100644 index 16b474290a6c..000000000000 --- a/graphics/corona/files/patch-OpenPNG.cpp +++ /dev/null @@ -1,19 +0,0 @@ ---- src/OpenPNG.cpp.orig 2002-12-26 02:52:21.000000000 +0100 -+++ src/OpenPNG.cpp 2012-04-30 21:33:15.000000000 +0200 -@@ -6,6 +6,7 @@ -
-
- #include <png.h>
-+#include <pngpriv.h>
- #include "Debug.h"
- #include "Open.h"
- #include "SimpleImage.h"
-@@ -39,7 +40,7 @@ - void PNG_error_function(png_structp png_ptr, png_const_charp warning) {
- // copied from libpng's pngerror.cpp, but without the fprintf
- jmp_buf jmpbuf;
-- memcpy(jmpbuf, png_ptr->jmpbuf, sizeof(jmp_buf));
-+ memcpy(jmpbuf, png_ptr->longjmp_buffer, sizeof(jmp_buf));
- longjmp(jmpbuf, 1);
- }
-
diff --git a/graphics/corona/files/patch-SavePNG.cpp b/graphics/corona/files/patch-SavePNG.cpp deleted file mode 100644 index ce159f6a50c6..000000000000 --- a/graphics/corona/files/patch-SavePNG.cpp +++ /dev/null @@ -1,9 +0,0 @@ ---- src/SavePNG.cpp.orig 2003-07-17 01:09:48.000000000 +0200 -+++ src/SavePNG.cpp 2012-05-01 09:51:29.000000000 +0200 -@@ -1,5 +1,6 @@ - #include <memory> - #include <png.h> -+#include <pngpriv.h> - #include "Debug.h" - #include "Save.h" - #include "Types.h" diff --git a/graphics/corona/pkg-descr b/graphics/corona/pkg-descr deleted file mode 100644 index 0bf2090a8117..000000000000 --- a/graphics/corona/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Corona is an image input/output library that can read, write, and -manipulate image files in just a few lines of code. It can write -PNG and TGA files, and read PNG, JPEG, PCX, BMP, TGA, and GIF. -Corona was designed to be easy to use, and exports a straightforward -C++ API. With just a few lines of C++, you can add image loading -to your application. - -WWW: http://corona.sourceforge.net/ diff --git a/graphics/corona/pkg-plist b/graphics/corona/pkg-plist deleted file mode 100644 index 40feabaa7216..000000000000 --- a/graphics/corona/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/corconvert -bin/corona-config -include/corona.h -lib/libcorona-1.0.2.so -lib/libcorona.a -lib/libcorona.so |