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.4 platform.
Download (HTTP): http://downloads.sourceforge.net/enlightenment/imlib2-1.4.5.tar.bz2
Download MD5 sum: 859e5fede51ec819f4314eee11da3ea5
Download size: 880 KB
Estimated disk space required: 14 MB
Estimated build time: 0.3 SBU
X Window System, libpng-1.6.4, and libjpeg-turbo-1.3.0
LibTIFF-4.0.3, giflib-5.0.5, and libid3tag
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/imlib2
Install Imlib2 by running the following commands:
sed -i "/DGifOpen/s:fd:&, NULL:" src/modules/loaders/loader_gif.c && ./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.5 && install -v -m644 doc/{*.gif,index.html} \ /usr/share/doc/imlib2-1.4.5
sed -i "/DGifOpen/s:fd:&, NULL:" ...: This sed fixes building with recent versions of Giflib.
--disable-static
: This
switch prevents installation of static versions of the libraries.
--without-x
: Add this
parameter if you do not have an X Window System installed.
Last updated on 2013-08-27 03:42:56 -0700