summaryrefslogtreecommitdiffstats
path: root/package/gd/Config.in
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2012-11-27 10:42:49 -0800
committerPeter Korsgaard <jacmet@sunsite.dk>2012-11-27 11:21:06 -0800
commitd0a13821d7f6ceb34061014b9899eb81c3988ccf (patch)
treeb76848874fd8cf35fd9f31e611f67144743ccd7c /package/gd/Config.in
parent47ee3051fc49d928d3ba6f83a8dea4102d8536f4 (diff)
downloadbuildroot-novena-d0a13821d7f6ceb34061014b9899eb81c3988ccf.tar.gz
buildroot-novena-d0a13821d7f6ceb34061014b9899eb81c3988ccf.zip
package: add gd package
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gd/Config.in')
-rw-r--r--package/gd/Config.in62
1 files changed, 62 insertions, 0 deletions
diff --git a/package/gd/Config.in b/package/gd/Config.in
new file mode 100644
index 000000000..efac21d7e
--- /dev/null
+++ b/package/gd/Config.in
@@ -0,0 +1,62 @@
+config BR2_PACKAGE_GD
+ bool "gd"
+ help
+ GD is a graphics library. It allows your code to quickly
+ draw images complete with lines, arcs, text, multiple
+ colours, cut and paste from other images, flood fills, and
+ write out the result as a PNG file. This is particularly
+ useful in World Wide Web applications, where PNG is one of
+ the formats accepted for inline images by most browsers.
+
+ http://www.boutell.com/gd/
+
+if BR2_PACKAGE_GD
+
+menu "gd tools"
+
+config BR2_PACKAGE_GD_ANNOTATE
+ bool "annotate"
+
+config BR2_PACKAGE_GD_BDFTOGD
+ bool "bdftogd"
+ depends on BR2_PACKAGE_PERL
+
+config BR2_PACKAGE_GD_GD2COPYPAL
+ bool "gd2copypal"
+
+config BR2_PACKAGE_GD_GD2TOGIF
+ bool "gd2togif"
+
+config BR2_PACKAGE_GD_GD2TOPNG
+ bool "gd2topng"
+ select BR2_PACKAGE_LIBPNG
+
+config BR2_PACKAGE_GD_GDCMPGIF
+ bool "gdcmpgif"
+
+config BR2_PACKAGE_GD_GDPARTTOPNG
+ bool "gdparttopng"
+ select BR2_PACKAGE_LIBPNG
+
+config BR2_PACKAGE_GD_GDTOPNG
+ bool "gdtopng"
+ select BR2_PACKAGE_LIBPNG
+
+config BR2_PACKAGE_GD_GIFTOGD2
+ bool "giftogd2"
+
+config BR2_PACKAGE_GD_PNGTOGD
+ bool "pngtogd"
+ select BR2_PACKAGE_LIBPNG
+
+config BR2_PACKAGE_GD_PNGTOGD2
+ bool "pngtogd2"
+ select BR2_PACKAGE_LIBPNG
+
+config BR2_PACKAGE_GD_WEBPNG
+ bool "webpng"
+ select BR2_PACKAGE_LIBPNG
+
+endmenu
+
+endif