Update to 0.1.3 release.

This commit is contained in:
Alex Dupre 2007-01-26 09:38:54 +00:00
parent 9c59622ec1
commit 64e543c8f9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=183319
16 changed files with 302 additions and 268 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= kipi-plugins
PORTVERSION= 0.1.2
PORTVERSION= 0.1.3
PORTEPOCH= 1
CATEGORIES= graphics kde
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
@ -15,7 +15,8 @@ MASTER_SITE_SUBDIR= kipi
MAINTAINER= ale@FreeBSD.org
COMMENT= KDE Image Plugin Interface plugins
LIB_DEPENDS= kipi.1:${PORTSDIR}/graphics/libkipi
LIB_DEPENDS= kipi.1:${PORTSDIR}/graphics/libkipi \
exiv2.0:${PORTSDIR}/graphics/exiv2
OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" on \
BATCHPROCESSIMAGES "batch processing on images" on \
@ -24,9 +25,11 @@ OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" on \
FINDIMAGES "find duplicate images in albums" on \
FLICKREXPORT "export images to flickr account" on \
GALLERYEXPORT "export images to remote Gallery server" on \
GPSSYNC "geolocalize pictures" on \
HTMLEXPORT "export images collections into HTML page" on \
JPEGLOSSLESS "batch processing without losing metainfo" on \
KAMERAKLIENT "GPhoto2 interface (import from cameras)" on \
METADATAEDIT "edit EXIF and IPTC pictures metadata" on \
MPEGENCODER "tool to build a video from images" on \
PRINTWIZARD "a print wizard" on \
RAWCONVERTER "convert RAW images from digital cameras" on \
@ -41,6 +44,7 @@ USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_KDELIBS_VER=3
USE_GETTEXT= yes
USE_LDCONFIG= yes
.include <bsd.port.pre.mk>
@ -100,6 +104,13 @@ SUBDIRS+= galleryexport
PLIST_SUB+= GALLERYEXPORT:="@comment "
.endif
.if !defined(WITHOUT_GPSSYNC)
PLIST_SUB+= GPSSYNC:=""
SUBDIRS+= gpssync
.else
PLIST_SUB+= GPSSYNC:="@comment "
.endif
.if !defined(WITHOUT_HTMLEXPORT)
PLIST_SUB+= HTMLEXPORT:=""
SUBDIRS+= htmlexport
@ -111,8 +122,7 @@ PLIST_SUB+= HTMLEXPORT:="@comment "
.if !defined(WITHOUT_JPEGLOSSLESS)
PLIST_SUB+= JPEGLOSSLESS:=""
SUBDIRS+= jpeglossless
LIB_DEPENDS+= kexif.1:${PORTSDIR}/graphics/libkexif \
Magick++.10:${PORTSDIR}/graphics/ImageMagick
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
.else
PLIST_SUB+= JPEGLOSSLESS:="@comment "
.endif
@ -125,6 +135,13 @@ LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2
PLIST_SUB+= KAMERAKLIENT:="@comment "
.endif
.if !defined(WITHOUT_METADATAEDIT)
PLIST_SUB+= METADATAEDIT:=""
SUBDIRS+= metadataedit
.else
PLIST_SUB+= METADATAEDIT:="@comment "
.endif
.if !defined(WITHOUT_MPEGENCODER)
PLIST_SUB+= MPEGENCODER:=""
RUN_DEPENDS+= mpeg2enc:${PORTSDIR}/multimedia/mjpegtools \
@ -145,8 +162,6 @@ PLIST_SUB+= PRINTWIZARD:="@comment "
.if !defined(WITHOUT_RAWCONVERTER)
PLIST_SUB+= RAWCONVERTER:=""
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
RUN_DEPENDS+= dcraw:${PORTSDIR}/graphics/dcraw
MAN1+= kipidcrawclient.1
SUBDIRS+= rawconverter
.else
PLIST_SUB+= RAWCONVERTER:="@comment "
@ -177,7 +192,6 @@ PLIST_SUB+= SLIDESHOW:="@comment "
.if !defined(WITHOUT_TIMEADJUST)
PLIST_SUB+= TIMEADJUST:=""
SUBDIRS+= timeadjust
LIB_DEPENDS+= kexif.1:${PORTSDIR}/graphics/libkexif
.else
PLIST_SUB+= TIMEADJUST:="@comment "
.endif

View File

@ -1,3 +1,3 @@
MD5 (kipi-plugins-0.1.2.tar.bz2) = 4c06a75f4d49f44c55ace9ed46e0f592
SHA256 (kipi-plugins-0.1.2.tar.bz2) = 54b7efb3f089bf9f4f24b12aee5b981bf49e530e6766ec90f1da4c559eeef318
SIZE (kipi-plugins-0.1.2.tar.bz2) = 7024061
MD5 (kipi-plugins-0.1.3.tar.bz2) = 7b8e55906b5d08280ab3ad3c2b43e8ab
SHA256 (kipi-plugins-0.1.3.tar.bz2) = b35a167676b36f082b78372533f7985aa5abb319d58ad18552ec3c1c0b545184
SIZE (kipi-plugins-0.1.3.tar.bz2) = 7595003

View File

@ -1,19 +0,0 @@
--- kipi-plugins/flickrexport/flickrtalker.cpp.orig Tue Oct 24 18:07:24 2006
+++ kipi-plugins/flickrexport/flickrtalker.cpp Tue Oct 24 18:09:52 2006
@@ -277,7 +277,7 @@
QString isfriend=(info.is_friend==1)?"1":"0";
form.addPair("is_friend",isfriend);
- headers.append("api_key="+ isfriend);
+ headers.append("is_friend="+ isfriend);
QString tags=info.tags.join(" ");
if(tags.length()>0){
@@ -297,6 +297,7 @@
}
QString md5=getApiSig(m_secret,headers);
+ form.addPair("api_sig", md5);
headers.append("api_sig="+ md5);
QString queryStr=headers.join("&");
QString postUrl=url+queryStr;

View File

@ -1,15 +1,15 @@
--- kipi-plugins/Makefile.in.orig Sun Jul 9 01:51:46 2006
+++ kipi-plugins/Makefile.in Sat Dec 16 13:42:56 2006
@@ -385,11 +385,7 @@
@compile_LIBKEXIF_TRUE@TIMEADJUSTDIR = $(timeadjustdir)
--- kipi-plugins/Makefile.in.orig Wed Jan 24 22:04:37 2007
+++ kipi-plugins/Makefile.in Fri Jan 26 08:31:57 2007
@@ -377,11 +377,7 @@
@compile_ACQUIREIMAGES_TRUE@ACQUIREIMAGESDIR = acquireimages
@compile_RAWCONVERTER_TRUE@RAWCONVERTERDIR = rawconverter
-SUBDIRS = printwizard calendar mpegencoder cdarchiving simpleviewerexport\
- sendimages batchprocessimages wallpaper findimages galleryexport flickrexport\
- $(SLIDESHOWDIR) $(KAMERAKLIENTDIR) $(JPEGLOSSLESSDIR) \
- $(TIMEADJUSTDIR) $(ACQUIREIMAGESDIR) $(RAWCONVERTERDIR) \
- $(HTMLEXPORTDIR)
+SUBDIRS = %%SUBDIRS%%
@compile_IPODEXPORT_TRUE@IPODEXPORTDIR = ipodexport
-SUBDIRS = common printwizard calendar mpegencoder cdarchiving simpleviewerexport \
- sendimages batchprocessimages wallpaper findimages galleryexport flickrexport \
- jpeglossless timeadjust gpssync metadataedit \
- $(SLIDESHOWDIR) $(KAMERAKLIENTDIR) $(ACQUIREIMAGESDIR) $(RAWCONVERTERDIR) \
- $(HTMLEXPORTDIR) $(IPODEXPORTDIR)
+SUBDIRS = common %%SUBDIRS%%
rcdir = $(kde_datadir)/kipi
rc_DATA = tips

View File

@ -0,0 +1,11 @@
--- kipi-plugins/acquireimages/acquireimagedialog.cpp.orig Fri Jan 26 09:24:31 2007
+++ kipi-plugins/acquireimages/acquireimagedialog.cpp Fri Jan 26 09:25:12 2007
@@ -120,7 +120,7 @@
// About data and help button.
m_about = new KIPIPlugins::KPAboutData(I18N_NOOP("Acquire images"),
- NULL,
+ (char*) NULL,
KAboutData::License_GPL,
I18N_NOOP("A Kipi plugin to acquire images"),
"(c) 2003-2004, Gilles Caulier");

View File

@ -1,45 +0,0 @@
--- kipi-plugins/kameraklient/gpcamera.cpp.orig Sat Dec 16 15:12:23 2006
+++ kipi-plugins/kameraklient/gpcamera.cpp Sat Dec 16 15:16:23 2006
@@ -561,7 +561,7 @@
}
int GPCamera::autoDetect(QString& model, QString& port) {
- ::CameraList camList;
+ ::CameraList *camList;
CameraAbilitiesList *abilList;
GPPortInfoList *infoList;
const char *camModel_, *camPort_;
@@ -569,27 +569,29 @@
context = gp_context_new ();
+ gp_list_new (&camList);
gp_abilities_list_new (&abilList);
gp_abilities_list_load (abilList, context);
gp_port_info_list_new (&infoList);
gp_port_info_list_load (infoList);
- gp_abilities_list_detect (abilList, infoList, &camList, context);
+ gp_abilities_list_detect (abilList, infoList, camList, context);
gp_abilities_list_free (abilList);
gp_port_info_list_free (infoList);
gp_context_unref( context );
- int count = gp_list_count (&camList);
+ int count = gp_list_count (camList);
if (count<=0) {
return -1;
}
for (int i = 0; i < count; i++) {
- gp_list_get_name (&camList, i, &camModel_);
- gp_list_get_value (&camList, i, &camPort_);
+ gp_list_get_name (camList, i, &camModel_);
+ gp_list_get_value (camList, i, &camPort_);
}
model = camModel_;
port = camPort_;
+ gp_list_unref (camList);
return 0;
}

View File

@ -1,48 +0,0 @@
--- kipi-plugins/kameraklient/gpiface.cpp.orig Sat Dec 16 15:42:30 2006
+++ kipi-plugins/kameraklient/gpiface.cpp Sat Dec 16 15:43:57 2006
@@ -33,7 +33,7 @@
{
int GPIface::autoDetect(QString& model, QString& port) {
- ::CameraList camList;
+ ::CameraList *camList;
CameraAbilitiesList *abilList;
GPPortInfoList *infoList;
const char *camModel_, *camPort_;
@@ -41,30 +41,31 @@
context = gp_context_new ();
+ gp_list_new (&camList);
gp_abilities_list_new (&abilList);
gp_abilities_list_load (abilList, context);
gp_port_info_list_new (&infoList);
gp_port_info_list_load (infoList);
- gp_abilities_list_detect (abilList, infoList, &camList, context);
+ gp_abilities_list_detect (abilList, infoList, camList, context);
gp_abilities_list_free (abilList);
gp_port_info_list_free (infoList);
gp_context_unref( context );
- int count = gp_list_count (&camList);
+ int count = gp_list_count (camList);
if (count<=0) {
return -1;
}
for (int i = 0; i < count; i++) {
- gp_list_get_name (&camList, i, &camModel_);
- gp_list_get_value (&camList, i, &camPort_);
+ gp_list_get_name (camList, i, &camModel_);
+ gp_list_get_value (camList, i, &camPort_);
}
model = camModel_;
port = camPort_;
-
+ gp_list_unref (camList);
return 0;
}

View File

@ -62,6 +62,20 @@
%%GALLERYEXPORT:%%lib/kde3/kipiplugin_galleryexport.la
%%GALLERYEXPORT:%%share/services/kipiplugin_galleryexport.desktop
%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.a
%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.la
%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.so
%%GPSSYNC:%%share/apps/kipiplugin_gpssync/icons/hicolor/16x16/actions/gpsimagetag.png
%%GPSSYNC:%%share/apps/kipiplugin_gpssync/icons/hicolor/32x32/actions/gpsimagetag.png
%%GPSSYNC:%%share/services/kipiplugin_gpssync.desktop
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/16x16/actions
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/16x16
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/32x32/actions
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/32x32
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync
%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.a
%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.la
%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.so
@ -90,7 +104,7 @@
%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.a
%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.la
%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.so
%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/flip_image.png
%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/flip.png
%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/grayscaleconvert.png
%%JPEGLOSSLESS:%%share/services/kipiplugin_jpeglossless.desktop
%%JPEGLOSSLESS:%%@dirrm share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions
@ -104,6 +118,11 @@
%%KAMERAKLIENT:%%lib/kde3/kipiplugin_kameraklient.so
%%KAMERAKLIENT:%%share/services/kipiplugin_kameraklient.desktop
%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.a
%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.la
%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.so
%%METADATAEDIT:%%share/services/kipiplugin_metadataedit.desktop
%%MPEGENCODER:%%bin/images2mpg
%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.a
%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.la
@ -115,17 +134,22 @@
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.so
%%PRINTWIZARD:%%share/services/kipiplugin_printwizard.desktop
%%RAWCONVERTER:%%bin/kipidcrawclient
%%RAWCONVERTER:%%bin/kipidcraw
%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.a
%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.la
%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.so
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/32x32/actions/rawconverterbatch.png
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/32x32/actions/rawconvertersingle.png
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/adobergb.icm
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/prophoto.icm
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/srgb.icm
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/widegamut.icm
%%RAWCONVERTER:%%share/services/kipiplugin_rawconverter.desktop
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/32x32/actions
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/32x32
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/profiles
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter
%%SENDIMAGES:%%lib/kde3/kipiplugin_sendimages.a
@ -164,6 +188,11 @@
%%WALLPAPER:%%lib/kde3/kipiplugin_wallpaper.so
%%WALLPAPER:%%share/services/kipiplugin_wallpaper.desktop
lib/libkipiplugins.a
lib/libkipiplugins.la
lib/libkipiplugins.so
lib/libkipiplugins.so.0
share/apps/kipi/tips
share/doc/HTML/da/kipi-plugins/acquireimages.docbook
@ -349,6 +378,7 @@ share/doc/HTML/et/kipi-plugins/convertimages.docbook
share/doc/HTML/et/kipi-plugins/effectimages.docbook
share/doc/HTML/et/kipi-plugins/filterimages.docbook
share/doc/HTML/et/kipi-plugins/findduplicateimages.docbook
share/doc/HTML/et/kipi-plugins/flickrexport.docbook
share/doc/HTML/et/kipi-plugins/galleryexport.docbook
share/doc/HTML/et/kipi-plugins/imagesgallery.docbook
share/doc/HTML/et/kipi-plugins/index.cache.bz2
@ -403,6 +433,7 @@ share/doc/HTML/nl/kipi-plugins/diroperations.docbook
share/doc/HTML/nl/kipi-plugins/effectimages.docbook
share/doc/HTML/nl/kipi-plugins/filterimages.docbook
share/doc/HTML/nl/kipi-plugins/findduplicateimages.docbook
share/doc/HTML/nl/kipi-plugins/flickrexport.docbook
share/doc/HTML/nl/kipi-plugins/galleryexport.docbook
share/doc/HTML/nl/kipi-plugins/gammacalibration.docbook
share/doc/HTML/nl/kipi-plugins/imagesgallery.docbook
@ -531,6 +562,26 @@ share/doc/HTML/sv/kipi-plugins/slideshow_dialog.png
share/doc/HTML/sv/kipi-plugins/timeadjust.docbook
share/doc/HTML/sv/kipi-plugins/wallpaper.docbook
share/locale/ar/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ar/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ar/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ar/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ar/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ar/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ar/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ar/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ar/LC_MESSAGES/kipiplugin_kameraklient.mo
share/locale/ar/LC_MESSAGES/kipiplugin_mpegencoder.mo
share/locale/ar/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/ar/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ar/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/ar/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ar/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ar/LC_MESSAGES/kipiplugins.mo
share/locale/br/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/br/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/br/LC_MESSAGES/kipiplugin_calendar.mo
@ -538,6 +589,7 @@ share/locale/br/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/br/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/br/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/br/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/br/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/br/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/br/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/br/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -609,6 +661,7 @@ share/locale/da/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/da/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/da/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/da/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/da/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -628,6 +681,7 @@ share/locale/de/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/de/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/de/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/de/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/de/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -647,6 +701,7 @@ share/locale/el/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/el/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/el/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/el/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/el/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -682,6 +737,7 @@ share/locale/es/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/es/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/es/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/es/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/es/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -701,6 +757,7 @@ share/locale/et/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/et/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/et/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/et/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/et/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -713,6 +770,8 @@ share/locale/et/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/et/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/et/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/et/LC_MESSAGES/kipiplugins.mo
share/locale/fi/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/fi/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/fi/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/fi/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo
@ -742,6 +801,7 @@ share/locale/ga/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ga/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ga/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ga/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ga/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -808,6 +868,7 @@ share/locale/it/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/it/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/it/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/it/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/it/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -827,6 +888,7 @@ share/locale/ja/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ja/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ja/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ja/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ja/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -892,6 +954,7 @@ share/locale/nl/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/nl/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/nl/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/nl/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/nl/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -910,6 +973,7 @@ share/locale/nn/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pa/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/pa/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/pa/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/pa/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_imagesgallery.mo
@ -929,8 +993,11 @@ share/locale/pl/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/pl/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/pl/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pl/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/pl/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/pl/LC_MESSAGES/kipiplugin_kameraklient.mo
share/locale/pl/LC_MESSAGES/kipiplugin_mpegencoder.mo
share/locale/pl/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/pl/LC_MESSAGES/kipiplugin_rawconverter.mo
@ -946,6 +1013,7 @@ share/locale/pt/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/pt/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/pt/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pt/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/pt/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -974,6 +1042,17 @@ share/locale/pt_BR/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo
share/locale/ru/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ru/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ru/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ru/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ru/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ru/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ru/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/ru/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ru/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/rw/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/rw/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/rw/LC_MESSAGES/kipiplugin_calendar.mo
@ -991,6 +1070,26 @@ share/locale/rw/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/rw/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/rw/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/rw/LC_MESSAGES/kipiplugins.mo
share/locale/sk/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/sk/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/sk/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/sk/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/sk/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/sk/LC_MESSAGES/kipiplugin_kameraklient.mo
share/locale/sk/LC_MESSAGES/kipiplugin_mpegencoder.mo
share/locale/sk/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/sk/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/sk/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/sk/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/sk/LC_MESSAGES/kipiplugins.mo
share/locale/sr/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/sr/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/sr/LC_MESSAGES/kipiplugin_calendar.mo
@ -1034,6 +1133,7 @@ share/locale/sv/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/sv/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/sv/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/sv/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/sv/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -1069,6 +1169,7 @@ share/locale/tr/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/tr/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/tr/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/tr/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/tr/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -1083,6 +1184,7 @@ share/locale/tr/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/tr/LC_MESSAGES/kipiplugins.mo
share/locale/uk/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/uk/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/uk/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/uk/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/uk/LC_MESSAGES/kipiplugin_timeadjust.mo
@ -1127,6 +1229,8 @@ share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo
@dirrmtry share/locale/pt
@dirrmtry share/locale/rw/LC_MESSAGES
@dirrmtry share/locale/rw
@dirrmtry share/locale/sk/LC_MESSAGES
@dirrmtry share/locale/sk
@dirrmtry share/locale/sr/LC_MESSAGES
@dirrmtry share/locale/sr
@dirrmtry share/locale/uk/LC_MESSAGES

View File

@ -6,7 +6,7 @@
#
PORTNAME= kipi-plugins
PORTVERSION= 0.1.2
PORTVERSION= 0.1.3
PORTEPOCH= 1
CATEGORIES= graphics kde
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
@ -15,7 +15,8 @@ MASTER_SITE_SUBDIR= kipi
MAINTAINER= ale@FreeBSD.org
COMMENT= KDE Image Plugin Interface plugins
LIB_DEPENDS= kipi.1:${PORTSDIR}/graphics/libkipi
LIB_DEPENDS= kipi.1:${PORTSDIR}/graphics/libkipi \
exiv2.0:${PORTSDIR}/graphics/exiv2
OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" on \
BATCHPROCESSIMAGES "batch processing on images" on \
@ -24,9 +25,11 @@ OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" on \
FINDIMAGES "find duplicate images in albums" on \
FLICKREXPORT "export images to flickr account" on \
GALLERYEXPORT "export images to remote Gallery server" on \
GPSSYNC "geolocalize pictures" on \
HTMLEXPORT "export images collections into HTML page" on \
JPEGLOSSLESS "batch processing without losing metainfo" on \
KAMERAKLIENT "GPhoto2 interface (import from cameras)" on \
METADATAEDIT "edit EXIF and IPTC pictures metadata" on \
MPEGENCODER "tool to build a video from images" on \
PRINTWIZARD "a print wizard" on \
RAWCONVERTER "convert RAW images from digital cameras" on \
@ -41,6 +44,7 @@ USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_KDELIBS_VER=3
USE_GETTEXT= yes
USE_LDCONFIG= yes
.include <bsd.port.pre.mk>
@ -100,6 +104,13 @@ SUBDIRS+= galleryexport
PLIST_SUB+= GALLERYEXPORT:="@comment "
.endif
.if !defined(WITHOUT_GPSSYNC)
PLIST_SUB+= GPSSYNC:=""
SUBDIRS+= gpssync
.else
PLIST_SUB+= GPSSYNC:="@comment "
.endif
.if !defined(WITHOUT_HTMLEXPORT)
PLIST_SUB+= HTMLEXPORT:=""
SUBDIRS+= htmlexport
@ -111,8 +122,7 @@ PLIST_SUB+= HTMLEXPORT:="@comment "
.if !defined(WITHOUT_JPEGLOSSLESS)
PLIST_SUB+= JPEGLOSSLESS:=""
SUBDIRS+= jpeglossless
LIB_DEPENDS+= kexif.1:${PORTSDIR}/graphics/libkexif \
Magick++.10:${PORTSDIR}/graphics/ImageMagick
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
.else
PLIST_SUB+= JPEGLOSSLESS:="@comment "
.endif
@ -125,6 +135,13 @@ LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2
PLIST_SUB+= KAMERAKLIENT:="@comment "
.endif
.if !defined(WITHOUT_METADATAEDIT)
PLIST_SUB+= METADATAEDIT:=""
SUBDIRS+= metadataedit
.else
PLIST_SUB+= METADATAEDIT:="@comment "
.endif
.if !defined(WITHOUT_MPEGENCODER)
PLIST_SUB+= MPEGENCODER:=""
RUN_DEPENDS+= mpeg2enc:${PORTSDIR}/multimedia/mjpegtools \
@ -145,8 +162,6 @@ PLIST_SUB+= PRINTWIZARD:="@comment "
.if !defined(WITHOUT_RAWCONVERTER)
PLIST_SUB+= RAWCONVERTER:=""
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
RUN_DEPENDS+= dcraw:${PORTSDIR}/graphics/dcraw
MAN1+= kipidcrawclient.1
SUBDIRS+= rawconverter
.else
PLIST_SUB+= RAWCONVERTER:="@comment "
@ -177,7 +192,6 @@ PLIST_SUB+= SLIDESHOW:="@comment "
.if !defined(WITHOUT_TIMEADJUST)
PLIST_SUB+= TIMEADJUST:=""
SUBDIRS+= timeadjust
LIB_DEPENDS+= kexif.1:${PORTSDIR}/graphics/libkexif
.else
PLIST_SUB+= TIMEADJUST:="@comment "
.endif

View File

@ -1,3 +1,3 @@
MD5 (kipi-plugins-0.1.2.tar.bz2) = 4c06a75f4d49f44c55ace9ed46e0f592
SHA256 (kipi-plugins-0.1.2.tar.bz2) = 54b7efb3f089bf9f4f24b12aee5b981bf49e530e6766ec90f1da4c559eeef318
SIZE (kipi-plugins-0.1.2.tar.bz2) = 7024061
MD5 (kipi-plugins-0.1.3.tar.bz2) = 7b8e55906b5d08280ab3ad3c2b43e8ab
SHA256 (kipi-plugins-0.1.3.tar.bz2) = b35a167676b36f082b78372533f7985aa5abb319d58ad18552ec3c1c0b545184
SIZE (kipi-plugins-0.1.3.tar.bz2) = 7595003

View File

@ -1,19 +0,0 @@
--- kipi-plugins/flickrexport/flickrtalker.cpp.orig Tue Oct 24 18:07:24 2006
+++ kipi-plugins/flickrexport/flickrtalker.cpp Tue Oct 24 18:09:52 2006
@@ -277,7 +277,7 @@
QString isfriend=(info.is_friend==1)?"1":"0";
form.addPair("is_friend",isfriend);
- headers.append("api_key="+ isfriend);
+ headers.append("is_friend="+ isfriend);
QString tags=info.tags.join(" ");
if(tags.length()>0){
@@ -297,6 +297,7 @@
}
QString md5=getApiSig(m_secret,headers);
+ form.addPair("api_sig", md5);
headers.append("api_sig="+ md5);
QString queryStr=headers.join("&");
QString postUrl=url+queryStr;

View File

@ -1,15 +1,15 @@
--- kipi-plugins/Makefile.in.orig Sun Jul 9 01:51:46 2006
+++ kipi-plugins/Makefile.in Sat Dec 16 13:42:56 2006
@@ -385,11 +385,7 @@
@compile_LIBKEXIF_TRUE@TIMEADJUSTDIR = $(timeadjustdir)
--- kipi-plugins/Makefile.in.orig Wed Jan 24 22:04:37 2007
+++ kipi-plugins/Makefile.in Fri Jan 26 08:31:57 2007
@@ -377,11 +377,7 @@
@compile_ACQUIREIMAGES_TRUE@ACQUIREIMAGESDIR = acquireimages
@compile_RAWCONVERTER_TRUE@RAWCONVERTERDIR = rawconverter
-SUBDIRS = printwizard calendar mpegencoder cdarchiving simpleviewerexport\
- sendimages batchprocessimages wallpaper findimages galleryexport flickrexport\
- $(SLIDESHOWDIR) $(KAMERAKLIENTDIR) $(JPEGLOSSLESSDIR) \
- $(TIMEADJUSTDIR) $(ACQUIREIMAGESDIR) $(RAWCONVERTERDIR) \
- $(HTMLEXPORTDIR)
+SUBDIRS = %%SUBDIRS%%
@compile_IPODEXPORT_TRUE@IPODEXPORTDIR = ipodexport
-SUBDIRS = common printwizard calendar mpegencoder cdarchiving simpleviewerexport \
- sendimages batchprocessimages wallpaper findimages galleryexport flickrexport \
- jpeglossless timeadjust gpssync metadataedit \
- $(SLIDESHOWDIR) $(KAMERAKLIENTDIR) $(ACQUIREIMAGESDIR) $(RAWCONVERTERDIR) \
- $(HTMLEXPORTDIR) $(IPODEXPORTDIR)
+SUBDIRS = common %%SUBDIRS%%
rcdir = $(kde_datadir)/kipi
rc_DATA = tips

View File

@ -0,0 +1,11 @@
--- kipi-plugins/acquireimages/acquireimagedialog.cpp.orig Fri Jan 26 09:24:31 2007
+++ kipi-plugins/acquireimages/acquireimagedialog.cpp Fri Jan 26 09:25:12 2007
@@ -120,7 +120,7 @@
// About data and help button.
m_about = new KIPIPlugins::KPAboutData(I18N_NOOP("Acquire images"),
- NULL,
+ (char*) NULL,
KAboutData::License_GPL,
I18N_NOOP("A Kipi plugin to acquire images"),
"(c) 2003-2004, Gilles Caulier");

View File

@ -1,45 +0,0 @@
--- kipi-plugins/kameraklient/gpcamera.cpp.orig Sat Dec 16 15:12:23 2006
+++ kipi-plugins/kameraklient/gpcamera.cpp Sat Dec 16 15:16:23 2006
@@ -561,7 +561,7 @@
}
int GPCamera::autoDetect(QString& model, QString& port) {
- ::CameraList camList;
+ ::CameraList *camList;
CameraAbilitiesList *abilList;
GPPortInfoList *infoList;
const char *camModel_, *camPort_;
@@ -569,27 +569,29 @@
context = gp_context_new ();
+ gp_list_new (&camList);
gp_abilities_list_new (&abilList);
gp_abilities_list_load (abilList, context);
gp_port_info_list_new (&infoList);
gp_port_info_list_load (infoList);
- gp_abilities_list_detect (abilList, infoList, &camList, context);
+ gp_abilities_list_detect (abilList, infoList, camList, context);
gp_abilities_list_free (abilList);
gp_port_info_list_free (infoList);
gp_context_unref( context );
- int count = gp_list_count (&camList);
+ int count = gp_list_count (camList);
if (count<=0) {
return -1;
}
for (int i = 0; i < count; i++) {
- gp_list_get_name (&camList, i, &camModel_);
- gp_list_get_value (&camList, i, &camPort_);
+ gp_list_get_name (camList, i, &camModel_);
+ gp_list_get_value (camList, i, &camPort_);
}
model = camModel_;
port = camPort_;
+ gp_list_unref (camList);
return 0;
}

View File

@ -1,48 +0,0 @@
--- kipi-plugins/kameraklient/gpiface.cpp.orig Sat Dec 16 15:42:30 2006
+++ kipi-plugins/kameraklient/gpiface.cpp Sat Dec 16 15:43:57 2006
@@ -33,7 +33,7 @@
{
int GPIface::autoDetect(QString& model, QString& port) {
- ::CameraList camList;
+ ::CameraList *camList;
CameraAbilitiesList *abilList;
GPPortInfoList *infoList;
const char *camModel_, *camPort_;
@@ -41,30 +41,31 @@
context = gp_context_new ();
+ gp_list_new (&camList);
gp_abilities_list_new (&abilList);
gp_abilities_list_load (abilList, context);
gp_port_info_list_new (&infoList);
gp_port_info_list_load (infoList);
- gp_abilities_list_detect (abilList, infoList, &camList, context);
+ gp_abilities_list_detect (abilList, infoList, camList, context);
gp_abilities_list_free (abilList);
gp_port_info_list_free (infoList);
gp_context_unref( context );
- int count = gp_list_count (&camList);
+ int count = gp_list_count (camList);
if (count<=0) {
return -1;
}
for (int i = 0; i < count; i++) {
- gp_list_get_name (&camList, i, &camModel_);
- gp_list_get_value (&camList, i, &camPort_);
+ gp_list_get_name (camList, i, &camModel_);
+ gp_list_get_value (camList, i, &camPort_);
}
model = camModel_;
port = camPort_;
-
+ gp_list_unref (camList);
return 0;
}

View File

@ -62,6 +62,20 @@
%%GALLERYEXPORT:%%lib/kde3/kipiplugin_galleryexport.la
%%GALLERYEXPORT:%%share/services/kipiplugin_galleryexport.desktop
%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.a
%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.la
%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.so
%%GPSSYNC:%%share/apps/kipiplugin_gpssync/icons/hicolor/16x16/actions/gpsimagetag.png
%%GPSSYNC:%%share/apps/kipiplugin_gpssync/icons/hicolor/32x32/actions/gpsimagetag.png
%%GPSSYNC:%%share/services/kipiplugin_gpssync.desktop
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/16x16/actions
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/16x16
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/32x32/actions
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/32x32
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons
%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync
%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.a
%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.la
%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.so
@ -90,7 +104,7 @@
%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.a
%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.la
%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.so
%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/flip_image.png
%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/flip.png
%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/grayscaleconvert.png
%%JPEGLOSSLESS:%%share/services/kipiplugin_jpeglossless.desktop
%%JPEGLOSSLESS:%%@dirrm share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions
@ -104,6 +118,11 @@
%%KAMERAKLIENT:%%lib/kde3/kipiplugin_kameraklient.so
%%KAMERAKLIENT:%%share/services/kipiplugin_kameraklient.desktop
%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.a
%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.la
%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.so
%%METADATAEDIT:%%share/services/kipiplugin_metadataedit.desktop
%%MPEGENCODER:%%bin/images2mpg
%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.a
%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.la
@ -115,17 +134,22 @@
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.so
%%PRINTWIZARD:%%share/services/kipiplugin_printwizard.desktop
%%RAWCONVERTER:%%bin/kipidcrawclient
%%RAWCONVERTER:%%bin/kipidcraw
%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.a
%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.la
%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.so
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/32x32/actions/rawconverterbatch.png
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/32x32/actions/rawconvertersingle.png
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/adobergb.icm
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/prophoto.icm
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/srgb.icm
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/widegamut.icm
%%RAWCONVERTER:%%share/services/kipiplugin_rawconverter.desktop
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/32x32/actions
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/32x32
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/profiles
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter
%%SENDIMAGES:%%lib/kde3/kipiplugin_sendimages.a
@ -164,6 +188,11 @@
%%WALLPAPER:%%lib/kde3/kipiplugin_wallpaper.so
%%WALLPAPER:%%share/services/kipiplugin_wallpaper.desktop
lib/libkipiplugins.a
lib/libkipiplugins.la
lib/libkipiplugins.so
lib/libkipiplugins.so.0
share/apps/kipi/tips
share/doc/HTML/da/kipi-plugins/acquireimages.docbook
@ -349,6 +378,7 @@ share/doc/HTML/et/kipi-plugins/convertimages.docbook
share/doc/HTML/et/kipi-plugins/effectimages.docbook
share/doc/HTML/et/kipi-plugins/filterimages.docbook
share/doc/HTML/et/kipi-plugins/findduplicateimages.docbook
share/doc/HTML/et/kipi-plugins/flickrexport.docbook
share/doc/HTML/et/kipi-plugins/galleryexport.docbook
share/doc/HTML/et/kipi-plugins/imagesgallery.docbook
share/doc/HTML/et/kipi-plugins/index.cache.bz2
@ -403,6 +433,7 @@ share/doc/HTML/nl/kipi-plugins/diroperations.docbook
share/doc/HTML/nl/kipi-plugins/effectimages.docbook
share/doc/HTML/nl/kipi-plugins/filterimages.docbook
share/doc/HTML/nl/kipi-plugins/findduplicateimages.docbook
share/doc/HTML/nl/kipi-plugins/flickrexport.docbook
share/doc/HTML/nl/kipi-plugins/galleryexport.docbook
share/doc/HTML/nl/kipi-plugins/gammacalibration.docbook
share/doc/HTML/nl/kipi-plugins/imagesgallery.docbook
@ -531,6 +562,26 @@ share/doc/HTML/sv/kipi-plugins/slideshow_dialog.png
share/doc/HTML/sv/kipi-plugins/timeadjust.docbook
share/doc/HTML/sv/kipi-plugins/wallpaper.docbook
share/locale/ar/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ar/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ar/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ar/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ar/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ar/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ar/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ar/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ar/LC_MESSAGES/kipiplugin_kameraklient.mo
share/locale/ar/LC_MESSAGES/kipiplugin_mpegencoder.mo
share/locale/ar/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/ar/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ar/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ar/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/ar/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ar/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ar/LC_MESSAGES/kipiplugins.mo
share/locale/br/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/br/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/br/LC_MESSAGES/kipiplugin_calendar.mo
@ -538,6 +589,7 @@ share/locale/br/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/br/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/br/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/br/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/br/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/br/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/br/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/br/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -609,6 +661,7 @@ share/locale/da/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/da/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/da/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/da/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/da/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -628,6 +681,7 @@ share/locale/de/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/de/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/de/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/de/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/de/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -647,6 +701,7 @@ share/locale/el/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/el/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/el/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/el/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/el/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -682,6 +737,7 @@ share/locale/es/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/es/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/es/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/es/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/es/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -701,6 +757,7 @@ share/locale/et/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/et/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/et/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/et/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/et/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -713,6 +770,8 @@ share/locale/et/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/et/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/et/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/et/LC_MESSAGES/kipiplugins.mo
share/locale/fi/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/fi/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/fi/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/fi/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo
@ -742,6 +801,7 @@ share/locale/ga/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ga/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ga/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ga/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ga/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -808,6 +868,7 @@ share/locale/it/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/it/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/it/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/it/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/it/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -827,6 +888,7 @@ share/locale/ja/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ja/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ja/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ja/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ja/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -892,6 +954,7 @@ share/locale/nl/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/nl/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/nl/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/nl/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/nl/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -910,6 +973,7 @@ share/locale/nn/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pa/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/pa/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/pa/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/pa/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_imagesgallery.mo
@ -929,8 +993,11 @@ share/locale/pl/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/pl/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/pl/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pl/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/pl/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/pl/LC_MESSAGES/kipiplugin_kameraklient.mo
share/locale/pl/LC_MESSAGES/kipiplugin_mpegencoder.mo
share/locale/pl/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/pl/LC_MESSAGES/kipiplugin_rawconverter.mo
@ -946,6 +1013,7 @@ share/locale/pt/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/pt/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/pt/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pt/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/pt/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -974,6 +1042,17 @@ share/locale/pt_BR/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo
share/locale/ru/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ru/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ru/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/ru/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/ru/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/ru/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ru/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/ru/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ru/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/rw/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/rw/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/rw/LC_MESSAGES/kipiplugin_calendar.mo
@ -991,6 +1070,26 @@ share/locale/rw/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/rw/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/rw/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/rw/LC_MESSAGES/kipiplugins.mo
share/locale/sk/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/sk/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/sk/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/sk/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/sk/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/sk/LC_MESSAGES/kipiplugin_kameraklient.mo
share/locale/sk/LC_MESSAGES/kipiplugin_mpegencoder.mo
share/locale/sk/LC_MESSAGES/kipiplugin_printwizard.mo
share/locale/sk/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/sk/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/sk/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/sk/LC_MESSAGES/kipiplugins.mo
share/locale/sr/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/sr/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/sr/LC_MESSAGES/kipiplugin_calendar.mo
@ -1034,6 +1133,7 @@ share/locale/sv/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/sv/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/sv/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/sv/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/sv/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -1069,6 +1169,7 @@ share/locale/tr/LC_MESSAGES/kipiplugin_cdarchiving.mo
share/locale/tr/LC_MESSAGES/kipiplugin_findimages.mo
share/locale/tr/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/tr/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/tr/LC_MESSAGES/kipiplugin_jpeglossless.mo
@ -1083,6 +1184,7 @@ share/locale/tr/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/tr/LC_MESSAGES/kipiplugins.mo
share/locale/uk/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/uk/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_imagesgallery.mo
share/locale/uk/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/uk/LC_MESSAGES/kipiplugin_slideshow.mo
share/locale/uk/LC_MESSAGES/kipiplugin_timeadjust.mo
@ -1127,6 +1229,8 @@ share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo
@dirrmtry share/locale/pt
@dirrmtry share/locale/rw/LC_MESSAGES
@dirrmtry share/locale/rw
@dirrmtry share/locale/sk/LC_MESSAGES
@dirrmtry share/locale/sk
@dirrmtry share/locale/sr/LC_MESSAGES
@dirrmtry share/locale/sr
@dirrmtry share/locale/uk/LC_MESSAGES