Imlib2 is a graphics library for fast file loading, saving, rendering and manipulation.
This package is known to build and work properly using an LFS-7.6 platform.
Download (HTTP): http://downloads.sourceforge.net/enlightenment/imlib2-1.4.6.tar.bz2
Download MD5 sum: 5c7104121ec6db652b37f74a6d7048e2
Download size: 853 KB
Estimated disk space required: 15 MB
Estimated build time: 0.2 SBU
libpng-1.6.13, libjpeg-turbo-1.3.1, LibTIFF-4.0.3, giflib-5.1.0, and libid3tag
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/imlib2
Install Imlib2 by running the following commands:
sed -e '/DGifOpen/s:fd:&, NULL:' \ -e '/DGifCloseFile/s:gif:&, NULL:' \ -i src/modules/loaders/loader_gif.c && sed -i 's/@my_libs@//' imlib2-config.in && ./configure --prefix=/usr --disable-static && make
This package does not come with a test suite.
Now, as the root
user:
make install && install -v -m755 -d /usr/share/doc/imlib2-1.4.6 && install -v -m644 doc/{*.gif,index.html} \ /usr/share/doc/imlib2-1.4.6
sed ...: The first command fix building with recent versions of Giflib and the second one corrects linker flags for libImlib2 usage.
--disable-static
: This
switch prevents installation of static versions of the libraries.
Last updated on 2014-09-14 14:01:57 -0700