Update to 0.1.5 release.
This commit is contained in:
parent
17f5c0078b
commit
38d9c702d4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=209135
12 changed files with 294 additions and 142 deletions
|
@ -6,8 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= kipi-plugins
|
||||
PORTVERSION= 0.1.4
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.1.5
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= graphics kde
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
|
@ -18,7 +17,7 @@ COMMENT= KDE Image Plugin Interface plugins
|
|||
|
||||
LIB_DEPENDS= kipi.1:${PORTSDIR}/graphics/libkipi \
|
||||
kexiv2.3:${PORTSDIR}/graphics/libkexiv2 \
|
||||
kdcraw.2:${PORTSDIR}/graphics/libkdcraw
|
||||
kdcraw.3:${PORTSDIR}/graphics/libkdcraw
|
||||
|
||||
OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" on \
|
||||
BATCHPROCESSIMAGES "batch processing on images" on \
|
||||
|
@ -34,6 +33,7 @@ OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" 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 \
|
||||
PICASAWEBEXPORT "export images to Picasa web service" on \
|
||||
PRINTWIZARD "a print wizard" on \
|
||||
RAWCONVERTER "convert RAW images from digital cameras" on \
|
||||
SENDIMAGES "send images by email" on \
|
||||
|
@ -48,105 +48,106 @@ USE_GMAKE= yes
|
|||
USE_KDELIBS_VER=3
|
||||
USE_GETTEXT= yes
|
||||
USE_LDCONFIG= yes
|
||||
CONFIGURE_ARGS= --disable-ipodexport
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if !defined(WITHOUT_ACQUIREIMAGES)
|
||||
PLIST_SUB+= ACQUIREIMAGES:=""
|
||||
SUBDIRS+= acquireimages
|
||||
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
|
||||
.else
|
||||
PLIST_SUB+= ACQUIREIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-acquireimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_BATCHPROCESSIMAGES)
|
||||
PLIST_SUB+= BATCHPROCESSIMAGES:=""
|
||||
SUBDIRS+= batchprocessimages
|
||||
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
|
||||
.else
|
||||
PLIST_SUB+= BATCHPROCESSIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-batchprocessimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_CALENDAR)
|
||||
PLIST_SUB+= CALENDAR:=""
|
||||
SUBDIRS+= calendar
|
||||
LIB_DEPENDS+= kcal.2:${PORTSDIR}/deskutils/kdepim3
|
||||
.else
|
||||
PLIST_SUB+= CALENDAR:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-calendar
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_CDARCHIVING)
|
||||
PLIST_SUB+= CDARCHIVING:=""
|
||||
RUN_DEPENDS+= k3b:${PORTSDIR}/sysutils/k3b
|
||||
SUBDIRS+= cdarchiving
|
||||
.else
|
||||
PLIST_SUB+= CDARCHIVING:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-cdarchiving
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_FINDIMAGES)
|
||||
PLIST_SUB+= FINDIMAGES:=""
|
||||
SUBDIRS+= findimages
|
||||
.else
|
||||
PLIST_SUB+= FINDIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-findimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_FLICKREXPORT)
|
||||
PLIST_SUB+= FLICKREXPORT:=""
|
||||
SUBDIRS+= flickrexport
|
||||
.else
|
||||
PLIST_SUB+= FLICKREXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-flickrexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_GALLERYEXPORT)
|
||||
PLIST_SUB+= GALLERYEXPORT:=""
|
||||
SUBDIRS+= galleryexport
|
||||
.else
|
||||
PLIST_SUB+= GALLERYEXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-galleryexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_GPSSYNC)
|
||||
PLIST_SUB+= GPSSYNC:=""
|
||||
SUBDIRS+= gpssync
|
||||
.else
|
||||
PLIST_SUB+= GPSSYNC:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-gpssync
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_HTMLEXPORT)
|
||||
PLIST_SUB+= HTMLEXPORT:=""
|
||||
SUBDIRS+= htmlexport
|
||||
LIB_DEPENDS+= xslt.2:${PORTSDIR}/textproc/libxslt
|
||||
.else
|
||||
PLIST_SUB+= HTMLEXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-htmlexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_IMAGEVIEWER)
|
||||
PLIST_SUB+= IMAGEVIEWER:=""
|
||||
SUBDIRS+= imageviewer
|
||||
.else
|
||||
PLIST_SUB+= IMAGEVIEWER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-imageviewer
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_JPEGLOSSLESS)
|
||||
PLIST_SUB+= JPEGLOSSLESS:=""
|
||||
SUBDIRS+= jpeglossless
|
||||
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
|
||||
.else
|
||||
PLIST_SUB+= JPEGLOSSLESS:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-jpeglossless
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_KAMERAKLIENT)
|
||||
PLIST_SUB+= KAMERAKLIENT:=""
|
||||
SUBDIRS+= kameraklient
|
||||
LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2
|
||||
.else
|
||||
PLIST_SUB+= KAMERAKLIENT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-kameraklient
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_METADATAEDIT)
|
||||
PLIST_SUB+= METADATAEDIT:=""
|
||||
SUBDIRS+= metadataedit
|
||||
.else
|
||||
PLIST_SUB+= METADATAEDIT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-metadataedit
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_MPEGENCODER)
|
||||
|
@ -154,69 +155,71 @@ PLIST_SUB+= MPEGENCODER:=""
|
|||
RUN_DEPENDS+= mpeg2enc:${PORTSDIR}/multimedia/mjpegtools \
|
||||
convert:${PORTSDIR}/graphics/ImageMagick
|
||||
MAN1+= images2mpg.1
|
||||
SUBDIRS+= mpegencoder
|
||||
.else
|
||||
PLIST_SUB+= MPEGENCODER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-mpegencoder
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_PICASAWEBEXPORT)
|
||||
PLIST_SUB+= PICASAWEBEXPORT:=""
|
||||
.else
|
||||
PLIST_SUB+= PICASAWEBEXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-picasawebexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_PRINTWIZARD)
|
||||
PLIST_SUB+= PRINTWIZARD:=""
|
||||
SUBDIRS+= printwizard
|
||||
.else
|
||||
PLIST_SUB+= PRINTWIZARD:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-printwizard
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_RAWCONVERTER)
|
||||
PLIST_SUB+= RAWCONVERTER:=""
|
||||
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
|
||||
SUBDIRS+= rawconverter
|
||||
.else
|
||||
PLIST_SUB+= RAWCONVERTER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-rawconverter
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SENDIMAGES)
|
||||
PLIST_SUB+= SENDIMAGES:=""
|
||||
SUBDIRS+= sendimages
|
||||
.else
|
||||
PLIST_SUB+= SENDIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-sendimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SIMPLEVIEWEREXPORT)
|
||||
PLIST_SUB+= SIMPLEVIEWEREXPORT:=""
|
||||
SUBDIRS+= simpleviewerexport
|
||||
.else
|
||||
PLIST_SUB+= SIMPLEVIEWEREXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-simpleviewerexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SLIDESHOW)
|
||||
PLIST_SUB+= SLIDESHOW:=""
|
||||
SUBDIRS+= slideshow
|
||||
USE_EFL+= imlib2
|
||||
.else
|
||||
PLIST_SUB+= SLIDESHOW:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-slideshow
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_TIMEADJUST)
|
||||
PLIST_SUB+= TIMEADJUST:=""
|
||||
SUBDIRS+= timeadjust
|
||||
.else
|
||||
PLIST_SUB+= TIMEADJUST:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-timeadjust
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_WALLPAPER)
|
||||
PLIST_SUB+= WALLPAPER:=""
|
||||
SUBDIRS+= wallpaper
|
||||
.else
|
||||
PLIST_SUB+= WALLPAPER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-wallpaper
|
||||
.endif
|
||||
|
||||
post-patch::
|
||||
@${REINPLACE_CMD} -e 's|-O2||g;s|-fno-schedule-insns -fno-inline||g' \
|
||||
${WRKSRC}/${CONFIGURE_SCRIPT}
|
||||
@${REINPLACE_CMD} -e 's@-lpthread@${PTHREAD_LIBS}@g' ${WRKSRC}/configure
|
||||
@${REINPLACE_CMD} -e 's@%%SUBDIRS%%@${SUBDIRS}@g' ${WRKSRC}/kipi-plugins/Makefile.in
|
||||
@${REINPLACE_CMD} -e 's@\/usr\/bin\/k3b@${PREFIX}\/bin\/k3b@g' \
|
||||
${WRKSRC}/kipi-plugins/cdarchiving/cdarchiving.cpp \
|
||||
${WRKSRC}/kipi-plugins/cdarchiving/cdarchivingdialog.cpp
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (kipi-plugins-0.1.4.tar.bz2) = 62469960593284b62302bde75a898c46
|
||||
SHA256 (kipi-plugins-0.1.4.tar.bz2) = eb7ceed6eb6893ccabee1aebf5c08379199a96eade2886daf54445664c786d53
|
||||
SIZE (kipi-plugins-0.1.4.tar.bz2) = 8529867
|
||||
MD5 (kipi-plugins-0.1.5.tar.bz2) = 099122d802530d22e69b314b3e97e30b
|
||||
SHA256 (kipi-plugins-0.1.5.tar.bz2) = da488c9d7778fb251805626b9b724d8196531e4a56dc01b6b02be80f70c7a14e
|
||||
SIZE (kipi-plugins-0.1.5.tar.bz2) = 8874079
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
--- kipi-plugins/Makefile.in.orig Thu Jun 28 00:58:15 2007
|
||||
+++ kipi-plugins/Makefile.in Mon Jul 2 08:53:37 2007
|
||||
@@ -367,11 +367,7 @@
|
||||
@compile_RAWCONVERTER_TRUE@RAWCONVERTERDIR = rawconverter
|
||||
@compile_IPODEXPORT_TRUE@IPODEXPORTDIR = ipodexport
|
||||
@compile_CALENDAR_TRUE@CALENDARDIR = calendar
|
||||
-SUBDIRS = common printwizard mpegencoder cdarchiving simpleviewerexport \
|
||||
- sendimages batchprocessimages wallpaper findimages galleryexport flickrexport \
|
||||
- jpeglossless timeadjust gpssync metadataedit imageviewer \
|
||||
- $(SLIDESHOWDIR) $(KAMERAKLIENTDIR) $(ACQUIREIMAGESDIR) $(RAWCONVERTERDIR) \
|
||||
- $(HTMLEXPORTDIR) $(IPODEXPORTDIR) $(CALENDARDIR)
|
||||
+SUBDIRS = common %%SUBDIRS%%
|
||||
|
||||
rcdir = $(kde_datadir)/kipi
|
||||
rc_DATA = tips
|
|
@ -1,11 +0,0 @@
|
|||
--- 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");
|
|
@ -4,7 +4,7 @@ image plugins among graphic applications.
|
|||
|
||||
This is a set of plugins using Kipi.
|
||||
|
||||
WWW: http://extragear.kde.org/apps/kipi
|
||||
WWW: http://www.kipi-plugins.org/
|
||||
|
||||
- Alex Dupre
|
||||
ale@FreeBSD.org
|
||||
|
|
|
@ -177,6 +177,11 @@
|
|||
%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.so
|
||||
%%MPEGENCODER:%%share/services/kipiplugin_mpegencoder.desktop
|
||||
|
||||
%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.a
|
||||
%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.la
|
||||
%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.so
|
||||
%%PICASAWEBEXPORT:%%share/services/kipiplugin_picasawebexport.desktop
|
||||
|
||||
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.a
|
||||
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.la
|
||||
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.so
|
||||
|
@ -185,15 +190,15 @@
|
|||
%%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/icons/hicolor/128x128/actions/rawconverterbatch.png
|
||||
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/128x128/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/128x128/actions
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/128x128
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/profiles
|
||||
|
@ -312,10 +317,10 @@ share/doc/HTML/en/kipi-plugins/flickrexportsignup.png
|
|||
share/doc/HTML/en/kipi-plugins/flickrexportuploaddialog.png
|
||||
share/doc/HTML/en/kipi-plugins/flickrexportuploading.png
|
||||
share/doc/HTML/en/kipi-plugins/galleryexport.docbook
|
||||
share/doc/HTML/en/kipi-plugins/geolocalization.docbook
|
||||
share/doc/HTML/en/kipi-plugins/geolocalizationcorrelate.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocalizationcorrelate1.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocalizationeditcoords.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocation.docbook
|
||||
share/doc/HTML/en/kipi-plugins/geolocationcorrelate.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocationcorrelate1.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocationeditcoords.png
|
||||
share/doc/HTML/en/kipi-plugins/imagegallery_albumsettings.png
|
||||
share/doc/HTML/en/kipi-plugins/imagegallery_collectionselection.png
|
||||
share/doc/HTML/en/kipi-plugins/imagegallery_looksettings.png
|
||||
|
@ -437,6 +442,7 @@ share/doc/HTML/it/kipi-plugins/filterimages.docbook
|
|||
share/doc/HTML/it/kipi-plugins/findduplicateimages.docbook
|
||||
share/doc/HTML/it/kipi-plugins/flickrexport.docbook
|
||||
share/doc/HTML/it/kipi-plugins/galleryexport.docbook
|
||||
share/doc/HTML/it/kipi-plugins/geolocation.docbook
|
||||
share/doc/HTML/it/kipi-plugins/geolocalization.docbook
|
||||
share/doc/HTML/it/kipi-plugins/imagesgallery.docbook
|
||||
share/doc/HTML/it/kipi-plugins/imageviewer.docbook
|
||||
|
@ -536,10 +542,10 @@ share/doc/HTML/sv/kipi-plugins/flickrexportsignup.png
|
|||
share/doc/HTML/sv/kipi-plugins/flickrexportuploaddialog.png
|
||||
share/doc/HTML/sv/kipi-plugins/flickrexportuploading.png
|
||||
share/doc/HTML/sv/kipi-plugins/galleryexport.docbook
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalization.docbook
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalizationcorrelate.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalizationcorrelate1.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalizationeditcoords.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocation.docbook
|
||||
share/doc/HTML/sv/kipi-plugins/geolocationcorrelate.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocationcorrelate1.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocationeditcoords.png
|
||||
share/doc/HTML/sv/kipi-plugins/imagegallery_albumsettings.png
|
||||
share/doc/HTML/sv/kipi-plugins/imagegallery_collectionselection.png
|
||||
share/doc/HTML/sv/kipi-plugins/imagegallery_looksettings.png
|
||||
|
@ -679,6 +685,30 @@ share/locale/cy/LC_MESSAGES/kipiplugin_slideshow.mo
|
|||
share/locale/cy/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/cy/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/cy/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
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_ipodexport.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/de/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/de/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/de/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
|
@ -791,7 +821,9 @@ share/locale/et/LC_MESSAGES/kipiplugin_timeadjust.mo
|
|||
share/locale/et/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/et/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/et/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/fi/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/fi/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/fi/LC_MESSAGES/kipiplugin_gpssync.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
|
||||
|
@ -877,16 +909,21 @@ share/locale/is/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
|||
share/locale/is/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
|
@ -956,6 +993,29 @@ share/locale/lt/LC_MESSAGES/kipiplugin_slideshow.mo
|
|||
share/locale/lt/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/lt/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/lt/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/mt/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/mt/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
|
@ -1068,6 +1128,7 @@ 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_ipodexport.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
|
@ -1076,9 +1137,35 @@ share/locale/pl/LC_MESSAGES/kipiplugin_printwizard.mo
|
|||
share/locale/pl/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
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_ipodexport.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
|
@ -1155,15 +1242,21 @@ share/locale/sr/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
|||
share/locale/sr/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
|
@ -1173,15 +1266,21 @@ share/locale/sr@Latn/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
|||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/sv/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= kipi-plugins
|
||||
PORTVERSION= 0.1.4
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.1.5
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= graphics kde
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
|
@ -18,7 +17,7 @@ COMMENT= KDE Image Plugin Interface plugins
|
|||
|
||||
LIB_DEPENDS= kipi.1:${PORTSDIR}/graphics/libkipi \
|
||||
kexiv2.3:${PORTSDIR}/graphics/libkexiv2 \
|
||||
kdcraw.2:${PORTSDIR}/graphics/libkdcraw
|
||||
kdcraw.3:${PORTSDIR}/graphics/libkdcraw
|
||||
|
||||
OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" on \
|
||||
BATCHPROCESSIMAGES "batch processing on images" on \
|
||||
|
@ -34,6 +33,7 @@ OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" 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 \
|
||||
PICASAWEBEXPORT "export images to Picasa web service" on \
|
||||
PRINTWIZARD "a print wizard" on \
|
||||
RAWCONVERTER "convert RAW images from digital cameras" on \
|
||||
SENDIMAGES "send images by email" on \
|
||||
|
@ -48,105 +48,106 @@ USE_GMAKE= yes
|
|||
USE_KDELIBS_VER=3
|
||||
USE_GETTEXT= yes
|
||||
USE_LDCONFIG= yes
|
||||
CONFIGURE_ARGS= --disable-ipodexport
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if !defined(WITHOUT_ACQUIREIMAGES)
|
||||
PLIST_SUB+= ACQUIREIMAGES:=""
|
||||
SUBDIRS+= acquireimages
|
||||
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
|
||||
.else
|
||||
PLIST_SUB+= ACQUIREIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-acquireimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_BATCHPROCESSIMAGES)
|
||||
PLIST_SUB+= BATCHPROCESSIMAGES:=""
|
||||
SUBDIRS+= batchprocessimages
|
||||
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
|
||||
.else
|
||||
PLIST_SUB+= BATCHPROCESSIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-batchprocessimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_CALENDAR)
|
||||
PLIST_SUB+= CALENDAR:=""
|
||||
SUBDIRS+= calendar
|
||||
LIB_DEPENDS+= kcal.2:${PORTSDIR}/deskutils/kdepim3
|
||||
.else
|
||||
PLIST_SUB+= CALENDAR:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-calendar
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_CDARCHIVING)
|
||||
PLIST_SUB+= CDARCHIVING:=""
|
||||
RUN_DEPENDS+= k3b:${PORTSDIR}/sysutils/k3b
|
||||
SUBDIRS+= cdarchiving
|
||||
.else
|
||||
PLIST_SUB+= CDARCHIVING:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-cdarchiving
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_FINDIMAGES)
|
||||
PLIST_SUB+= FINDIMAGES:=""
|
||||
SUBDIRS+= findimages
|
||||
.else
|
||||
PLIST_SUB+= FINDIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-findimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_FLICKREXPORT)
|
||||
PLIST_SUB+= FLICKREXPORT:=""
|
||||
SUBDIRS+= flickrexport
|
||||
.else
|
||||
PLIST_SUB+= FLICKREXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-flickrexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_GALLERYEXPORT)
|
||||
PLIST_SUB+= GALLERYEXPORT:=""
|
||||
SUBDIRS+= galleryexport
|
||||
.else
|
||||
PLIST_SUB+= GALLERYEXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-galleryexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_GPSSYNC)
|
||||
PLIST_SUB+= GPSSYNC:=""
|
||||
SUBDIRS+= gpssync
|
||||
.else
|
||||
PLIST_SUB+= GPSSYNC:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-gpssync
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_HTMLEXPORT)
|
||||
PLIST_SUB+= HTMLEXPORT:=""
|
||||
SUBDIRS+= htmlexport
|
||||
LIB_DEPENDS+= xslt.2:${PORTSDIR}/textproc/libxslt
|
||||
.else
|
||||
PLIST_SUB+= HTMLEXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-htmlexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_IMAGEVIEWER)
|
||||
PLIST_SUB+= IMAGEVIEWER:=""
|
||||
SUBDIRS+= imageviewer
|
||||
.else
|
||||
PLIST_SUB+= IMAGEVIEWER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-imageviewer
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_JPEGLOSSLESS)
|
||||
PLIST_SUB+= JPEGLOSSLESS:=""
|
||||
SUBDIRS+= jpeglossless
|
||||
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
|
||||
.else
|
||||
PLIST_SUB+= JPEGLOSSLESS:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-jpeglossless
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_KAMERAKLIENT)
|
||||
PLIST_SUB+= KAMERAKLIENT:=""
|
||||
SUBDIRS+= kameraklient
|
||||
LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2
|
||||
.else
|
||||
PLIST_SUB+= KAMERAKLIENT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-kameraklient
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_METADATAEDIT)
|
||||
PLIST_SUB+= METADATAEDIT:=""
|
||||
SUBDIRS+= metadataedit
|
||||
.else
|
||||
PLIST_SUB+= METADATAEDIT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-metadataedit
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_MPEGENCODER)
|
||||
|
@ -154,69 +155,71 @@ PLIST_SUB+= MPEGENCODER:=""
|
|||
RUN_DEPENDS+= mpeg2enc:${PORTSDIR}/multimedia/mjpegtools \
|
||||
convert:${PORTSDIR}/graphics/ImageMagick
|
||||
MAN1+= images2mpg.1
|
||||
SUBDIRS+= mpegencoder
|
||||
.else
|
||||
PLIST_SUB+= MPEGENCODER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-mpegencoder
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_PICASAWEBEXPORT)
|
||||
PLIST_SUB+= PICASAWEBEXPORT:=""
|
||||
.else
|
||||
PLIST_SUB+= PICASAWEBEXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-picasawebexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_PRINTWIZARD)
|
||||
PLIST_SUB+= PRINTWIZARD:=""
|
||||
SUBDIRS+= printwizard
|
||||
.else
|
||||
PLIST_SUB+= PRINTWIZARD:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-printwizard
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_RAWCONVERTER)
|
||||
PLIST_SUB+= RAWCONVERTER:=""
|
||||
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
|
||||
SUBDIRS+= rawconverter
|
||||
.else
|
||||
PLIST_SUB+= RAWCONVERTER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-rawconverter
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SENDIMAGES)
|
||||
PLIST_SUB+= SENDIMAGES:=""
|
||||
SUBDIRS+= sendimages
|
||||
.else
|
||||
PLIST_SUB+= SENDIMAGES:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-sendimages
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SIMPLEVIEWEREXPORT)
|
||||
PLIST_SUB+= SIMPLEVIEWEREXPORT:=""
|
||||
SUBDIRS+= simpleviewerexport
|
||||
.else
|
||||
PLIST_SUB+= SIMPLEVIEWEREXPORT:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-simpleviewerexport
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SLIDESHOW)
|
||||
PLIST_SUB+= SLIDESHOW:=""
|
||||
SUBDIRS+= slideshow
|
||||
USE_EFL+= imlib2
|
||||
.else
|
||||
PLIST_SUB+= SLIDESHOW:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-slideshow
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_TIMEADJUST)
|
||||
PLIST_SUB+= TIMEADJUST:=""
|
||||
SUBDIRS+= timeadjust
|
||||
.else
|
||||
PLIST_SUB+= TIMEADJUST:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-timeadjust
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_WALLPAPER)
|
||||
PLIST_SUB+= WALLPAPER:=""
|
||||
SUBDIRS+= wallpaper
|
||||
.else
|
||||
PLIST_SUB+= WALLPAPER:="@comment "
|
||||
CONFIGURE_ARGS+=--disable-wallpaper
|
||||
.endif
|
||||
|
||||
post-patch::
|
||||
@${REINPLACE_CMD} -e 's|-O2||g;s|-fno-schedule-insns -fno-inline||g' \
|
||||
${WRKSRC}/${CONFIGURE_SCRIPT}
|
||||
@${REINPLACE_CMD} -e 's@-lpthread@${PTHREAD_LIBS}@g' ${WRKSRC}/configure
|
||||
@${REINPLACE_CMD} -e 's@%%SUBDIRS%%@${SUBDIRS}@g' ${WRKSRC}/kipi-plugins/Makefile.in
|
||||
@${REINPLACE_CMD} -e 's@\/usr\/bin\/k3b@${PREFIX}\/bin\/k3b@g' \
|
||||
${WRKSRC}/kipi-plugins/cdarchiving/cdarchiving.cpp \
|
||||
${WRKSRC}/kipi-plugins/cdarchiving/cdarchivingdialog.cpp
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (kipi-plugins-0.1.4.tar.bz2) = 62469960593284b62302bde75a898c46
|
||||
SHA256 (kipi-plugins-0.1.4.tar.bz2) = eb7ceed6eb6893ccabee1aebf5c08379199a96eade2886daf54445664c786d53
|
||||
SIZE (kipi-plugins-0.1.4.tar.bz2) = 8529867
|
||||
MD5 (kipi-plugins-0.1.5.tar.bz2) = 099122d802530d22e69b314b3e97e30b
|
||||
SHA256 (kipi-plugins-0.1.5.tar.bz2) = da488c9d7778fb251805626b9b724d8196531e4a56dc01b6b02be80f70c7a14e
|
||||
SIZE (kipi-plugins-0.1.5.tar.bz2) = 8874079
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
--- kipi-plugins/Makefile.in.orig Thu Jun 28 00:58:15 2007
|
||||
+++ kipi-plugins/Makefile.in Mon Jul 2 08:53:37 2007
|
||||
@@ -367,11 +367,7 @@
|
||||
@compile_RAWCONVERTER_TRUE@RAWCONVERTERDIR = rawconverter
|
||||
@compile_IPODEXPORT_TRUE@IPODEXPORTDIR = ipodexport
|
||||
@compile_CALENDAR_TRUE@CALENDARDIR = calendar
|
||||
-SUBDIRS = common printwizard mpegencoder cdarchiving simpleviewerexport \
|
||||
- sendimages batchprocessimages wallpaper findimages galleryexport flickrexport \
|
||||
- jpeglossless timeadjust gpssync metadataedit imageviewer \
|
||||
- $(SLIDESHOWDIR) $(KAMERAKLIENTDIR) $(ACQUIREIMAGESDIR) $(RAWCONVERTERDIR) \
|
||||
- $(HTMLEXPORTDIR) $(IPODEXPORTDIR) $(CALENDARDIR)
|
||||
+SUBDIRS = common %%SUBDIRS%%
|
||||
|
||||
rcdir = $(kde_datadir)/kipi
|
||||
rc_DATA = tips
|
|
@ -1,11 +0,0 @@
|
|||
--- 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");
|
|
@ -4,7 +4,7 @@ image plugins among graphic applications.
|
|||
|
||||
This is a set of plugins using Kipi.
|
||||
|
||||
WWW: http://extragear.kde.org/apps/kipi
|
||||
WWW: http://www.kipi-plugins.org/
|
||||
|
||||
- Alex Dupre
|
||||
ale@FreeBSD.org
|
||||
|
|
|
@ -177,6 +177,11 @@
|
|||
%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.so
|
||||
%%MPEGENCODER:%%share/services/kipiplugin_mpegencoder.desktop
|
||||
|
||||
%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.a
|
||||
%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.la
|
||||
%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.so
|
||||
%%PICASAWEBEXPORT:%%share/services/kipiplugin_picasawebexport.desktop
|
||||
|
||||
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.a
|
||||
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.la
|
||||
%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.so
|
||||
|
@ -185,15 +190,15 @@
|
|||
%%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/icons/hicolor/128x128/actions/rawconverterbatch.png
|
||||
%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/128x128/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/128x128/actions
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/128x128
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons
|
||||
%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/profiles
|
||||
|
@ -312,10 +317,10 @@ share/doc/HTML/en/kipi-plugins/flickrexportsignup.png
|
|||
share/doc/HTML/en/kipi-plugins/flickrexportuploaddialog.png
|
||||
share/doc/HTML/en/kipi-plugins/flickrexportuploading.png
|
||||
share/doc/HTML/en/kipi-plugins/galleryexport.docbook
|
||||
share/doc/HTML/en/kipi-plugins/geolocalization.docbook
|
||||
share/doc/HTML/en/kipi-plugins/geolocalizationcorrelate.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocalizationcorrelate1.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocalizationeditcoords.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocation.docbook
|
||||
share/doc/HTML/en/kipi-plugins/geolocationcorrelate.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocationcorrelate1.png
|
||||
share/doc/HTML/en/kipi-plugins/geolocationeditcoords.png
|
||||
share/doc/HTML/en/kipi-plugins/imagegallery_albumsettings.png
|
||||
share/doc/HTML/en/kipi-plugins/imagegallery_collectionselection.png
|
||||
share/doc/HTML/en/kipi-plugins/imagegallery_looksettings.png
|
||||
|
@ -437,6 +442,7 @@ share/doc/HTML/it/kipi-plugins/filterimages.docbook
|
|||
share/doc/HTML/it/kipi-plugins/findduplicateimages.docbook
|
||||
share/doc/HTML/it/kipi-plugins/flickrexport.docbook
|
||||
share/doc/HTML/it/kipi-plugins/galleryexport.docbook
|
||||
share/doc/HTML/it/kipi-plugins/geolocation.docbook
|
||||
share/doc/HTML/it/kipi-plugins/geolocalization.docbook
|
||||
share/doc/HTML/it/kipi-plugins/imagesgallery.docbook
|
||||
share/doc/HTML/it/kipi-plugins/imageviewer.docbook
|
||||
|
@ -536,10 +542,10 @@ share/doc/HTML/sv/kipi-plugins/flickrexportsignup.png
|
|||
share/doc/HTML/sv/kipi-plugins/flickrexportuploaddialog.png
|
||||
share/doc/HTML/sv/kipi-plugins/flickrexportuploading.png
|
||||
share/doc/HTML/sv/kipi-plugins/galleryexport.docbook
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalization.docbook
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalizationcorrelate.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalizationcorrelate1.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocalizationeditcoords.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocation.docbook
|
||||
share/doc/HTML/sv/kipi-plugins/geolocationcorrelate.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocationcorrelate1.png
|
||||
share/doc/HTML/sv/kipi-plugins/geolocationeditcoords.png
|
||||
share/doc/HTML/sv/kipi-plugins/imagegallery_albumsettings.png
|
||||
share/doc/HTML/sv/kipi-plugins/imagegallery_collectionselection.png
|
||||
share/doc/HTML/sv/kipi-plugins/imagegallery_looksettings.png
|
||||
|
@ -679,6 +685,30 @@ share/locale/cy/LC_MESSAGES/kipiplugin_slideshow.mo
|
|||
share/locale/cy/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/cy/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/cy/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
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_ipodexport.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/da/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/de/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/de/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/de/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
|
@ -791,7 +821,9 @@ share/locale/et/LC_MESSAGES/kipiplugin_timeadjust.mo
|
|||
share/locale/et/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/et/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/et/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/fi/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/fi/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/fi/LC_MESSAGES/kipiplugin_gpssync.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
|
||||
|
@ -877,16 +909,21 @@ share/locale/is/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
|||
share/locale/is/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/is/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
|
@ -956,6 +993,29 @@ share/locale/lt/LC_MESSAGES/kipiplugin_slideshow.mo
|
|||
share/locale/lt/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/lt/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/lt/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/ms/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/mt/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/mt/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
|
@ -1068,6 +1128,7 @@ 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_ipodexport.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
|
@ -1076,9 +1137,35 @@ share/locale/pl/LC_MESSAGES/kipiplugin_printwizard.mo
|
|||
share/locale/pl/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/pl/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
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_ipodexport.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/pt/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/kipiplugin_batchprocessimages.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/kipiplugin_calendar.mo
|
||||
|
@ -1155,15 +1242,21 @@ share/locale/sr/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
|||
share/locale/sr/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/sr/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
|
@ -1173,15 +1266,21 @@ share/locale/sr@Latn/LC_MESSAGES/kipiplugin_cdarchiving.mo
|
|||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_findimages.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_flickrexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_galleryexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_gpssync.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_htmlexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_imagesgallery.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_ipodexport.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_jpeglossless.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_kameraklient.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_metadataedit.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_mpegencoder.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_printwizard.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_rawconverter.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_sendimages.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_slideshow.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_sync.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_timeadjust.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_viewer.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugin_wallpaper.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/kipiplugins.mo
|
||||
share/locale/sv/LC_MESSAGES/kipiplugin_acquireimages.mo
|
||||
|
|
Loading…
Reference in a new issue