Go to file
Kim Woelders c4750cbcb7 EET loader: Fix build + stuff
Several changes were not properly incorporated in this loader.

Noted by Andrew Savchenko

Also add back im->key check previously dropped by mistake.
2021-01-18 19:04:01 +01:00
m4 Enable visibility hiding 2018-04-06 06:47:11 +02:00
src EET loader: Fix build + stuff 2021-01-18 19:04:01 +01:00
.gitignore Autofoo cleanups. 2016-03-12 08:27:20 +01:00
.indent.pro Indent 2019-11-17 08:49:34 +01:00
AUTHORS and new loaders tree 2004-11-01 09:47:12 +00:00
COPYING fix the copying license to 2009-01-13 13:00:45 +00:00
COPYING-PLAIN and new loaders tree 2004-11-01 09:47:12 +00:00
COPYING.loader_xcf and new loaders tree 2004-11-01 09:47:12 +00:00
ChangeLog 1.7.1 (no changes since 1.7.0) 2020-12-07 16:34:03 +01:00
INSTALL fix install 2004-11-02 03:30:28 +00:00
Makefile.am Autofoo cleanups. 2016-03-12 08:27:20 +01:00
README.in Edb is dead. 2013-03-24 21:16:48 +01:00
autogen.sh autogen.sh: Add -n as alternative to NOCONFIGURE 2020-01-11 12:58:31 +01:00
configure.ac 1.7.1 (no changes since 1.7.0) 2020-12-07 16:34:03 +01:00
imlib2_loaders.spec.in Spec file cleanups 2018-07-13 15:37:04 +02:00

README.in

Imlib2_loaders @VERSION@

Additional Image Loaders

This package contains image loader plugins for Imlib 2 that are not dis-
tributed together with the Imlib 2 package itself. More about Imlib 2
can be found on http://www.rasterman.com/imlib.html.

XCF loader:

The XCF loader cannot be packaged together with Imlib 2 because Imlib 2
is distributed under the BSD license, whereas the XCF loader is using
elements of the Gimp's (www.gimp.org) codebase, which is distributed
under the GPL. The XCF loader therefore is GPL'd as well.

------------------------------------------------------------------------------
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.