diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2011-10-17 10:41:05 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-12-10 22:13:04 +0100 |
commit | 5ddcdb4ceb4eba32d4e32b1e2201df2836bbabf2 (patch) | |
tree | 6435d4f85acd0c9312843b969ec5af4139696612 /package/imlib2/Config.in | |
parent | 43ba7c1af8f89be7092516cada8e95e147f79e72 (diff) | |
download | buildroot-novena-5ddcdb4ceb4eba32d4e32b1e2201df2836bbabf2.tar.gz buildroot-novena-5ddcdb4ceb4eba32d4e32b1e2201df2836bbabf2.zip |
New package: ImLib2
[Peter: Config.in tweaks, fix build without X]
Signed-off-by: Frederic Bassaler <frederic.bassaler@gmail.com>
Signed-off-by: Matias Garcia <mgarcia@rossvideo.com>
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Tested-By: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/imlib2/Config.in')
-rw-r--r-- | package/imlib2/Config.in | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/package/imlib2/Config.in b/package/imlib2/Config.in new file mode 100644 index 000000000..16a94d6eb --- /dev/null +++ b/package/imlib2/Config.in @@ -0,0 +1,38 @@ +config BR2_PACKAGE_IMLIB2 + bool "imlib2" + select BR2_PACKAGE_FREETYPE + help + Imlib 2 is the successor to Imlib. This library provides + routines to load, save and render images in various formats. + + http://freshmeat.net/projects/imlib2/ + +if BR2_PACKAGE_IMLIB2 + +config BR2_PACKAGE_IMLIB2_JPEG + bool "JPEG support" + select BR2_PACKAGE_JPEG + +config BR2_PACKAGE_IMLIB2_PNG + bool "PNG support" + select BR2_PACKAGE_LIBPNG + +config BR2_PACKAGE_IMLIB2_GIF + bool "GIF support" + select BR2_PACKAGE_LIBUNGIF + +config BR2_PACKAGE_IMLIB2_TIFF + bool "TIFF support" + select BR2_PACKAGE_TIFF + +config BR2_PACKAGE_IMLIB2_ID3 + bool "ID3 support" + select BR2_PACKAGE_LIBID3TAG + +config BR2_PACKAGE_IMLIB2_X + bool "X support" + default y + depends on BR2_PACKAGE_XORG7 + select BR2_PACKAGE_XLIB_LIBXEXT + select BR2_PACKAGE_XLIB_LIBX11 +endif |