Go to file
Mike Frysinger 9c8e529672 touchup amd64/x86 asm handling, unify all the autodetection warnings, make gif support configurable, and default to giflib instead of old libungif
SVN revision: 16664
2005-09-07 22:54:52 +00:00
data Fri Jan 21 00:57:08 2005 Michael Jennings (mej) 2005-01-21 04:53:15 +00:00
debian Silence 2005-08-24 16:03:20 +00:00
doc Sun Jan 23 22:30:28 2005 Michael Jennings (mej) 2005-01-24 02:26:35 +00:00
libltdl ltdl be gone fromt he src tree! :) 2004-04-28 04:24:04 +00:00
m4 If the version from config has something after x.y.z, drop it. 2005-09-03 03:55:13 +00:00
src Check for .dll extension on cygwin 2005-09-04 20:22:19 +00:00
.cvsignore Thu Sep 1 16:53:13 2005 Michael Jennings (mej) 2005-09-01 20:45:21 +00:00
AUTHORS 1. id3 album cover loader patches 2005-07-22 10:28:11 +00:00
COPYING and new much cleaner tree. 2004-11-01 09:45:31 +00:00
COPYING-PLAIN and new much cleaner tree. 2004-11-01 09:45:31 +00:00
ChangeLog and new much cleaner tree. 2004-11-01 09:45:31 +00:00
Doxyfile and new much cleaner tree. 2004-11-01 09:45:31 +00:00
INSTALL fix install 2004-11-02 03:30:28 +00:00
Makefile.am fix more 2005-03-04 12:22:33 +00:00
NEWS and new much cleaner tree. 2004-11-01 09:45:31 +00:00
README.ID3 Added documentation for tag id3-link-url 2005-08-22 09:50:50 +00:00
README.in auto-package imlib2... 2005-03-03 14:28:52 +00:00
TODO and new much cleaner tree. 2004-11-01 09:45:31 +00:00
autogen.sh add error checking to all autogen scripts 2005-08-03 01:00:21 +00:00
configure.in touchup amd64/x86 asm handling, unify all the autodetection warnings, make gif support configurable, and default to giflib instead of old libungif 2005-09-07 22:54:52 +00:00
gendoc and new much cleaner tree. 2004-11-01 09:45:31 +00:00
imlib2-config.in and new much cleaner tree. 2004-11-01 09:45:31 +00:00
imlib2-native.oe.in auto-package imlib2... 2005-03-03 14:28:52 +00:00
imlib2.bb.in auto-package imlib2... 2005-03-03 14:28:52 +00:00
imlib2.c.in and new much cleaner tree. 2004-11-01 09:45:31 +00:00
imlib2.oe.in auto-package imlib2... 2005-03-03 14:28:52 +00:00
imlib2.pc.in and new much cleaner tree. 2004-11-01 09:45:31 +00:00
imlib2.spec.in Thu Sep 1 16:53:13 2005 Michael Jennings (mej) 2005-09-01 20:45:21 +00:00
imlib2Xnative.bb.in auto-package imlib2... 2005-03-03 14:28:52 +00:00

README.in

Imlib2 @VERSION@

This is the Imlib 2 library - a library that does image file loading and
saving as well as rendering, manipulation, arbitrary polygon support, etc.

It does ALL of these operations FAST. Imlib2 also tries to be highly
intelligent about doing them, so writing naive programs can be done
easily, without sacrificing speed.

This is a complete rewrite over the Imlib 1.x series. The architecture is
more modular, simple, and flexible. See index.html in the doc/ directory
for more information.

Imlib2 requires several libraries to be already installed. These are:

libjpeg          http://www.ijg.org/
libpng           http://www.libpng.org/pub/png/libpng.html
freetype 2.1.x   http://www.freetype.org/

For examples of this library in use, seek:

Eterm            http://www.eterm.org/ (CVS version only, currently)
feh              http://www.linuxbrit.co.uk/feh.html
geist            http://www.linuxbrit.co.uk/geist.html

------------------------------------------------------------------------------
COMPILING AND INSTALLING:

  ./configure
  make
(as root unless youa re installing in your users directories):
  make install
      
------------------------------------------------------------------------------
BUILDING PACKAGES:

RPM: To build rpm packages:
  
  sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz

You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
for more details)

DEB: To build deb packages:

  tar zvf @PACKAGE@-@VERSION@.tar.gz
  cd @PACKAGE@-@VERSION@
  dpkg-buildpackage -us -uc -rfakeroot
  cd ..
  rm -rf @PACKAGE@-@VERSION@

You will find all the debian source, binary etc. packages put in the directory
where you first untarred the source tarball.