summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2017-02-24 10:35:44 +0000
committerJames Le Cuirot <chewi@gentoo.org>2017-02-24 10:36:02 +0000
commit457fd74562d5265a86c3698f6f113c7352dc5446 (patch)
treec8e054586af2a7bd53f6bb94f2a49c04149ad9c5 /media-libs/leptonica/files
parentnet-libs/gloox: Removed old. (diff)
downloadgentoo-457fd74562d5265a86c3698f6f113c7352dc5446.tar.gz
gentoo-457fd74562d5265a86c3698f6f113c7352dc5446.tar.bz2
gentoo-457fd74562d5265a86c3698f6f113c7352dc5446.zip
media-libs/leptonica: Drop all pre-1.74.1 versions
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'media-libs/leptonica/files')
-rw-r--r--media-libs/leptonica/files/leptonica-1.71-fix-openjpeg-test.patch15
-rw-r--r--media-libs/leptonica/files/leptonica-1.71-openjpeg-2.0.patch26
2 files changed, 0 insertions, 41 deletions
diff --git a/media-libs/leptonica/files/leptonica-1.71-fix-openjpeg-test.patch b/media-libs/leptonica/files/leptonica-1.71-fix-openjpeg-test.patch
deleted file mode 100644
index f7d18a24adce..000000000000
--- a/media-libs/leptonica/files/leptonica-1.71-fix-openjpeg-test.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- leptonica-1.71.orig/configure.ac 2014-08-31 14:33:16.834598973 +0200
-+++ leptonica-1.71/configure.ac 2014-09-01 10:56:59.394975447 +0200
-@@ -78,10 +78,10 @@
- )
- )
-
--AS_IF([test "x$with_libopenjp2" != xno],
-+AS_IF([test "x$with_libopenjpeg" != xno],
- AC_CHECK_LIB([openjp2], [opj_create_decompress],
- AC_DEFINE([HAVE_LIBJP2K], 1, [Define to 1 if you have libopenjp2.]) AC_SUBST([LIBJP2K_LIBS], [-lopenjp2]),
-- AS_IF([test "x$with_libopenjp2" = xyes], AC_MSG_ERROR([libopenjp2 support requested but library not found]))
-+ AS_IF([test "x$with_libopenjpeg" = xyes], AC_MSG_ERROR([libopenjp2 support requested but library not found]))
- )
- )
-
diff --git a/media-libs/leptonica/files/leptonica-1.71-openjpeg-2.0.patch b/media-libs/leptonica/files/leptonica-1.71-openjpeg-2.0.patch
deleted file mode 100644
index ed855729f1f6..000000000000
--- a/media-libs/leptonica/files/leptonica-1.71-openjpeg-2.0.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Better use `pkg-config --cflags libopenjp2`
-
-Michael Weber, xmw@gentoo.org
-
---- leptonica-1.71/src/libversions.c
-+++ leptonica-1.71/src/libversions.c
-@@ -69,7 +69,7 @@
- #endif
-
- #if HAVE_LIBJP2K /* assuming it's 2.1 */
--#include "openjpeg-2.1/openjpeg.h"
-+#include "openjpeg-2.0/openjpeg.h"
- #endif
-
- #define stringJoinInPlace(s1, s2) \
---- leptonica-1.71/src/jp2kio.c
-+++ leptonica-1.71/src/jp2kio.c
-@@ -108,7 +108,7 @@
-
- /* Leptonica supports both 2.0 and 2.1. If you have 2.0,
- * change MINOR to 0. */
--#define MINOR 1
-+#define MINOR 0
-
- #if MINOR == 0
- static const l_int32 OpjMinor = 0;