summaryrefslogtreecommitdiffstats
path: root/rules/libcaca.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-06-10 01:02:04 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-06-10 01:02:04 +0000
commit7ab1c6e91ff37b8ff6dd2490a542ca986aa12b3c (patch)
tree44e9c6ef24030ca4d0caf012373f940bd6965f68 /rules/libcaca.in
parentd3f7a1c2b985e2984236fe41242a9094e9a38c30 (diff)
downloadptxdist-7ab1c6e91ff37b8ff6dd2490a542ca986aa12b3c.tar.gz
ptxdist-7ab1c6e91ff37b8ff6dd2490a542ca986aa12b3c.tar.xz
[libcaca] added
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10708 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libcaca.in')
-rw-r--r--rules/libcaca.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/rules/libcaca.in b/rules/libcaca.in
new file mode 100644
index 000000000..536b2821c
--- /dev/null
+++ b/rules/libcaca.in
@@ -0,0 +1,36 @@
+## SECTION=multimedia_libs
+
+menuconfig LIBCACA
+ tristate "libcaca "
+ select NCURSES if LIBCACA_NCURSES
+ select XORG_LIB_X11 if LIBCACA_X11
+ help
+ libcaca is the Colour AsCii Art library. It provides high
+ level functions for colour text drawing, simple primitives
+ for line, polygon and ellipse drawing, as well as powerful
+ image to text conversion routines.
+
+if LIBCACA
+
+config LIBCACA_NCURSES
+ bool "ncurses graphics backend"
+ default y
+ help
+ ncurses graphics support
+
+config LIBCACA_X11
+ bool "X11 graphics backend"
+ help
+ X11 support
+
+#config LIBCACA_GL
+# bool "OpenGL graphics backend"
+# help
+# OpenGL support
+
+config LIBCACA_CXX
+ bool "C++ bindings"
+ help
+ select this, if you want to use libcaca from C++ progamms
+
+endif