Digikam: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) No edit summary |
Added sed command to fix compilation with recent versions of exiv2. |
||
| Line 28: | Line 28: | ||
== Non-Multilib == | == Non-Multilib == | ||
Fix a compilation error with recent versions of [[exiv2]]: | |||
sed -i 's@e\.what()\.c_str()@e.what()@g' \ | |||
digikam/libs/widgets/*.cpp \ | |||
digikam/libs/dmetadata/{,*/}*.cpp | |||
Compile the package: | Compile the package: | ||
| Line 42: | Line 48: | ||
=== 32Bit === | === 32Bit === | ||
Fix a compilation error with recent versions of [[exiv2]]: | |||
sed -i 's@e\.what()\.c_str()@e.what()@g' \ | |||
digikam/libs/widgets/*.cpp \ | |||
digikam/libs/dmetadata/{,*/}*.cpp | |||
Compile the package: | Compile the package: | ||
| Line 56: | Line 68: | ||
=== N32 === | === N32 === | ||
Fix a compilation error with recent versions of [[exiv2]]: | |||
sed -i 's@e\.what()\.c_str()@e.what()@g' \ | |||
digikam/libs/widgets/*.cpp \ | |||
digikam/libs/dmetadata/{,*/}*.cpp | |||
Compile the package: | Compile the package: | ||
| Line 70: | Line 88: | ||
=== 64Bit === | === 64Bit === | ||
Fix a compilation error with recent versions of [[exiv2]]: | |||
sed -i 's@e\.what()\.c_str()@e.what()@g' \ | |||
digikam/libs/widgets/*.cpp \ | |||
digikam/libs/dmetadata/{,*/}*.cpp | |||
Compile the package: | Compile the package: | ||
Revision as of 03:52, 19 April 2007
| Download Source: | http://downloads.sourceforge.net/digikam/digikam-0.9.4.tar.bz2 |
|---|
Introduction to Digikam
digiKam is an advanced digital photo management application for linux. With digikam you can view, manage, edit, enhance, organize, tag, and share photographs.
Project Homepage: Unknown
Dependencies
Required
Recommended
Optional
Non-Multilib
Fix a compilation error with recent versions of exiv2:
sed -i 's@e\.what()\.c_str()@e.what()@g' \
digikam/libs/widgets/*.cpp \
digikam/libs/dmetadata/{,*/}*.cpp
Compile the package:
./configure --prefix=${KDE_PREFIX} --disable-debug \
--disable-dependency-tracking
make
Install the package
make install
Multilib
32Bit
Fix a compilation error with recent versions of exiv2:
sed -i 's@e\.what()\.c_str()@e.what()@g' \
digikam/libs/widgets/*.cpp \
digikam/libs/dmetadata/{,*/}*.cpp
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
PKG_CONFIG_PATH="$PKG_CONFIG_PATH32}" USE_ARCH=32 \
./configure --prefix=${KDE_PREFIX} --disable-debug \
--disable-dependency-tracking &&
make
Install the package:
make install
N32
Fix a compilation error with recent versions of exiv2:
sed -i 's@e\.what()\.c_str()@e.what()@g' \
digikam/libs/widgets/*.cpp \
digikam/libs/dmetadata/{,*/}*.cpp
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32}" USE_ARCH=n32 \
./configure --prefix=${KDE_PREFIX} --disable-debug \
--enable-libsuffix=32 --disable-dependency-tracking &&
make
Install the package:
make install
64Bit
Fix a compilation error with recent versions of exiv2:
sed -i 's@e\.what()\.c_str()@e.what()@g' \
digikam/libs/widgets/*.cpp \
digikam/libs/dmetadata/{,*/}*.cpp
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
PKG_CONFIG_PATH="$PKG_CONFIG_PATH64}" USE_ARCH=64 \
./configure --prefix=${KDE_PREFIX} --disable-debug \
--enable-libsuffix=64 --disable-dependency-tracking &&
make
Install the package:
make install
Contents
| Installed Programs: | digikam, digikamdcraw, digitaglinktree, showfoto |
|---|---|
| Installed Libraries: | libdigikam.{la,so}, kio_digikampreview.{la,so}, kio_digikamalbums.{la,so}, kio_digikamdates.{la,so}, kio_digikamthumbnail.{la,so}, kio_digikamtags.{la,so}, kio_digikamsearch.{la,so} |
| Installed Directories: | ${KDE_PREFIX-/usr}/include/digikam |