Difference between revisions of "Libexif"

From CBLFS
Jump to navigationJump to search
(64Bit)
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
{| style="text-align: left; background-color: AliceBlue;"
 
{| style="text-align: left; background-color: AliceBlue;"
|-
+
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/libexif/libexif-0.6.13.tar.bz2
+
|http://downloads.sourceforge.net/libexif/libexif-{{Libexif-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags.|http://libexif.sourceforge.net/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 19: Line 21:
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  ./configure --prefix=/usr \
 
  ./configure --prefix=/usr \
     --with-doc-dir=/usr/share/doc/libexif-0.6.13 &&
+
     --with-doc-dir=/usr/share/doc/libexif-{{Libexif-Version}} &&
 
  make
 
  make
  
Line 25: Line 27:
  
 
  make install
 
  make install
 +
 +
=== Command Explanations ===
 +
 +
'''sed -i ... doc/Makefile.in''': Installation of libexif will fail if Doxygen is not present on the system due to a packaging bug. The command does not affect the situation where Doxygen is installed.
  
 
== Multilib ==
 
== Multilib ==
Line 34: Line 40:
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  CC="gcc ${BUILD32}" ./configure --prefix=/usr \
 
  CC="gcc ${BUILD32}" ./configure --prefix=/usr \
     --with-doc-dir=/usr/share/doc/libexif-0.6.13 &&
+
     --with-doc-dir=/usr/share/doc/libexif-{{Libexif-Version}} &&
 
  make
 
  make
  
Line 47: Line 53:
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
 
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
     --with-doc-dir=/usr/share/doc/libexif-0.6.13 &&
+
     --with-doc-dir=/usr/share/doc/libexif-{{Libexif-Version}} &&
 
  make
 
  make
  
Line 60: Line 66:
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
 
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
 
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
     --with-doc-dir=/usr/share/doc/libexif-0.6.13 &&
+
     --with-doc-dir=/usr/share/doc/libexif-{{Libexif-Version}} &&
 
  make
 
  make
  
Line 66: Line 72:
  
 
  make install
 
  make install
 +
 +
= Contents =
 +
 +
{| style="text-align: left;"
 +
|-valign="top"
 +
! Installed Programs:
 +
|  None
 +
|-valign="top"
 +
! Installed Libraries:
 +
|  libexif.{so,a}
 +
|-valign="top"
 +
! Installed Directories:
 +
| /usr/include/libexif and /usr/share/doc/libexif-{{Libexif-Version}}
 +
|}
 +
 +
=== Short Descriptions ===
 +
 +
{| style="text-align: left;"
 +
|-valign="top"
 +
! libexif.{so,a}
 +
| contains functions used for parsing, editing, and saving EXIF data.
 +
|}
 +
 +
[[Category:Graphics Libraries]]

Latest revision as of 16:11, 19 March 2009

Download Source: http://downloads.sourceforge.net/libexif/libexif-0.6.19.tar.bz2

Introduction to Libexif

Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags.

Project Homepage: http://libexif.sourceforge.net/

Dependencies

Optional (to Build Documentation)

Non-Multilib

Compile the package:

sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
./configure --prefix=/usr \
    --with-doc-dir=/usr/share/doc/libexif-0.6.19 &&
make

Install the package

make install

Command Explanations

sed -i ... doc/Makefile.in: Installation of libexif will fail if Doxygen is not present on the system due to a packaging bug. The command does not affect the situation where Doxygen is installed.

Multilib

32Bit

Compile the package:

sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr \
    --with-doc-dir=/usr/share/doc/libexif-0.6.19 &&
make

Install the package

make install

N32

Compile the package:

sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
    --with-doc-dir=/usr/share/doc/libexif-0.6.19 &&
make

Install the package

make install

64Bit

Compile the package:

sed -i 's/^install-data-local/@HAVE_DOXYGEN_TRUE@&/' doc/Makefile.in &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
    --with-doc-dir=/usr/share/doc/libexif-0.6.19 &&
make

Install the package

make install

Contents

Installed Programs: None
Installed Libraries: libexif.{so,a}
Installed Directories: /usr/include/libexif and /usr/share/doc/libexif-0.6.19

Short Descriptions

libexif.{so,a} contains functions used for parsing, editing, and saving EXIF data.