Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
diff -Nura libart_lgpl-2.3.21.orig/Makefile.am libart_lgpl-2.3.21/Makefile.am
--- libart_lgpl-2.3.21.orig/Makefile.am 2011-02-01 10:07:39.687545397 -0300
+++ libart_lgpl-2.3.21/Makefile.am 2011-02-01 10:08:48.320545396 -0300
@@ -5,11 +5,6 @@
noinst_SCRIPTS = gen_art_config.sh
-BUILT_SOURCES = art_config.h
-
-art_config.h:
- ./gen_art_config.sh > art_config.h
-
EXTRA_DIST = \
libart.def \
libart-config.in \
diff -Nura libart_lgpl-2.3.21.orig/art_config.h libart_lgpl-2.3.21/art_config.h
--- libart_lgpl-2.3.21.orig/art_config.h 2011-02-01 10:07:39.688545397 -0300
+++ libart_lgpl-2.3.21/art_config.h 2011-02-01 10:08:27.315545395 -0300
@@ -1,9 +1,15 @@
/* Automatically generated by gen_art_config */
+#include <limits.h>
+
#define ART_SIZEOF_CHAR 1
#define ART_SIZEOF_SHORT 2
#define ART_SIZEOF_INT 4
+#if LONG_MAX == 2147483647L
#define ART_SIZEOF_LONG 4
+#else
+#define ART_SIZEOF_LONG 8
+#endif
typedef unsigned char art_u8;
typedef unsigned short art_u16;

View File

@@ -0,0 +1,14 @@
config BR2_PACKAGE_LIBART
bool "libart"
help
Libart is a library for high-performance 2D graphics. It
supports a very powerful imaging model, basically the same
as SVG and the Java 2D API. It includes all PostScript
imaging operations, and adds antialiasing and
alpha-transparency. It is also highly tuned for incremental
rendering. It contains data structures and algorithms suited
to rapid, precise computation of Region of Interest, and a
two-phase rendering pipeline optimized for interactive
display.
http://www.levien.com/libart/

View File

@@ -0,0 +1,2 @@
# From http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.sha256sum
sha256 2a10b1c884bb37c7bd5c5eba59dbd0d28bf68e64a42d7f2083c836f60f8e98fa libart_lgpl-2.3.21.tar.gz

View File

@@ -0,0 +1,17 @@
################################################################################
#
# libart
#
################################################################################
LIBART_VERSION_MAJOR = 2.3
LIBART_VERSION = $(LIBART_VERSION_MAJOR).21
LIBART_SOURCE = libart_lgpl-$(LIBART_VERSION).tar.gz
LIBART_SITE = http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/$(LIBART_VERSION_MAJOR)
LIBART_AUTORECONF = YES
LIBART_INSTALL_STAGING = YES
LIBART_CONFIG_SCRIPTS = libart2-config
LIBART_LICENSE = LGPLv2+
LIBART_LICENSE_FILES = COPYING
$(eval $(autotools-package))