Bug 232875 - Compile 1.2.0 from tar or 1.3.0 from SVN Decorate / Texture gives me a blank target and will not apply
Summary: Compile 1.2.0 from tar or 1.3.0 from SVN Decorate / Texture gives me a blank ...
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Portability-Compilation (show other bugs)
Version: unspecified
Platform: Debian stable Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-03-31 18:43 UTC by Von Wallace
Modified: 2017-08-19 20:57 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 1.3.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Von Wallace 2010-03-31 18:43:25 UTC
Version:           1.2.0 & 1.3.0 (using KDE 4.4.1)
OS:                Linux
Installed from:    Debian stable Packages

Use the following batch to Complie from SVN 1.3:

Compile 1.2.0 from tar or 1.3.0 from SVN Decorate / Texture gives me a blank target and will not apply

#To checkout the latest kdegraphics libs svn source for KDE4 (includes libkipi, libkdcraw, libkexiv2, libksane) :

cd kdegraphics/build
make uninstall
cd ..
cd ..

rm -r kdegraphics
svn co -N svn://anonsvn.kde.org/home/kde/trunk/KDE/kdegraphics
cd kdegraphics
svn up libs
svn up cmake

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
make install 

cd ..
cd ..

cd graphics/build
make uninstall
cd ..
cd ..


rm -r graphics
svn co -N svn://anonsvn.kde.org/home/kde/trunk/extragear/graphics
cd graphics
svn up digikam
svn up kipi-plugins
svn up cmake

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
make install
Comment 1 Von Wallace 2010-03-31 19:25:51 UTC
The reason it is not working is the contents of /usr/share/kde4/apps/digikam/data
has no textures in it the install part is not placing the textures in that directory..

Not sure what the real fix is...

So I just added the below line to the above simple script...

cd /usr/share/kde4/apps/digikam/data
cp /home/vonskie/dk/graphics/digikam/data/pics/texturepatterns/*.png .


This copies the textures where they need to be... Not sure why the installer is not doing this..

This happens on the 1.3.0 SVN and 1.2.0 tar
Comment 2 caulier.gilles 2010-04-01 14:35:44 UTC
SVN commit 1109975 by cgilles:

wrong cmake syntax to include subdir during compilation and install
BUGS: 232875


 M  +2 -1      CMakeLists.txt  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1109975