diff --git a/multimedia/dvdstyler/Makefile b/multimedia/dvdstyler/Makefile index 3bc29682ac4e..a09c50b3c71c 100644 --- a/multimedia/dvdstyler/Makefile +++ b/multimedia/dvdstyler/Makefile @@ -1,74 +1,72 @@ PORTNAME= dvdstyler -DISTVERSION= 3.3b3 -PORTREVISION= 6 +DISTVERSION= 3.3b4 PORTEPOCH= 2 CATEGORIES= multimedia #MASTER_SITES= SF MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-devel/${DISTVERSION} DISTNAME= DVDStyler-${DISTVERSION} MAINTAINER= ahicks@p-o.co.uk COMMENT= WxWidgets frontend to dvd recoding and authoring programs WWW= https://www.dvdstyler.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= zip:archivers/zip \ wxsvg>=1.2:graphics/wxsvg \ dvdauthor:multimedia/dvdauthor \ mplex:multimedia/mjpegtools \ growisofs:sysutils/dvd+rw-tools \ docbook-xml>=4.1.2:textproc/docbook-xml \ xmlto:textproc/xmlto LIB_DEPENDS= libexif.so:graphics/libexif \ libavcodec.so:multimedia/ffmpeg \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libdbus-1.so:devel/dbus \ libudev.so:devel/libudev-devd RUN_DEPENDS= zip:archivers/zip \ wxsvg>=1.2:graphics/wxsvg \ dvdauthor:multimedia/dvdauthor \ mplex:multimedia/mjpegtools \ mkisofs:sysutils/cdrtools \ growisofs:sysutils/dvd+rw-tools -USES= autoreconf compiler:c++11-lib gettext gmake jpeg \ +USES= autoreconf compiler:c++11-lib gettext-tools gmake jpeg \ localbase:ldflags pkgconfig tar:bzip2 USE_CXXSTD= c++14 USE_WX= 3.2+ WX_CONF_ARGS= absolute GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ENV= ac_cv_path_AVCONV_PATH="" OBJCXX="${CXX}" CFLAGS+= -std=c17 CPPFLAGS+= -std=c++17 OPTIONS_DEFINE= DOCS .if defined(WITH_DVD_DEVICE) DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE} .else DEFAULT_DVD_DEVICE=/dev/cd0 .endif pre-everything:: .if !defined(WITH_DVD_DEVICE) @${ECHO_MSG} "===>" @${ECHO_MSG} "===> The default DVD device is ${DEFAULT_DVD_DEVICE}" @${ECHO_MSG} "===> Define WITH_DVD_DEVICE if you want to change the default" @${ECHO_MSG} "===> For example, 'make WITH_DVD_DEVICE=\"/dev/somedevice\"'" .endif post-patch: @${REINPLACE_CMD} -e '/doc_DATA/s|COPYING||' \ ${WRKSRC}/Makefile.am @${REINPLACE_CMD} -e 's|"sg\*"|"cd*"|g' \ ${WRKSRC}/src/SysUtils.cpp @${REINPLACE_CMD} -e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|g' \ ${WRKSRC}/src/Config.h .include diff --git a/multimedia/dvdstyler/distinfo b/multimedia/dvdstyler/distinfo index c3c191dac576..bdb981315150 100644 --- a/multimedia/dvdstyler/distinfo +++ b/multimedia/dvdstyler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1678827360 -SHA256 (DVDStyler-3.3b3.tar.bz2) = 7e37417f464640dfeecffb5fd4ed212999845b1c43955b203f3d691e782fe52b -SIZE (DVDStyler-3.3b3.tar.bz2) = 9899576 +TIMESTAMP = 1716996185 +SHA256 (DVDStyler-3.3b4.tar.bz2) = 24268a704ee3913c53e7b28a78fb3c82681079da0e70fe4d110d85c080d2d87a +SIZE (DVDStyler-3.3b4.tar.bz2) = 9901696 diff --git a/multimedia/dvdstyler/files/patch-docs-Makefile.in b/multimedia/dvdstyler/files/patch-docs-Makefile.in deleted file mode 100644 index 6f58626e46f3..000000000000 --- a/multimedia/dvdstyler/files/patch-docs-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- docs/Makefile.in.orig 2015-02-17 21:35:57 UTC -+++ docs/Makefile.in -@@ -551,7 +551,7 @@ uninstall-man: uninstall-man1 - - help_%.zip: DVDStylerGuide_%.xml - t=`mktemp -d tempXXXXXXX`; \ -- (cd "$$t" && $(XMLTO) --skip-validation htmlhelp ../DVDStylerGuide_$*.xml && rm -f *.hh* && $(ZIP) ../help_$*.zip *.html); \ -+ (cd "$$t" && $(XMLTO) --skip-validation htmlhelp ../DVDStylerGuide_$*.xml && rm -f *.hh* *.proc && $(ZIP) ../help_$*.zip *.html); \ - rm -f "$$t"/*.html; \ - rm -f "$$t"/*.proc; \ - if [ -d "images/$*" ]; then \ diff --git a/multimedia/dvdstyler/files/patch-src_mediaenc__ffmpeg.cpp b/multimedia/dvdstyler/files/patch-src_mediaenc__ffmpeg.cpp deleted file mode 100644 index c43c9d1ea648..000000000000 --- a/multimedia/dvdstyler/files/patch-src_mediaenc__ffmpeg.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- src/mediaenc_ffmpeg.cpp.orig 2022-10-03 20:02:59 UTC -+++ src/mediaenc_ffmpeg.cpp -@@ -330,7 +330,9 @@ bool wxFfmpegMediaEncoder::addAudioStream(int codecId) - return false; - for (int i = 0; i < c->channels; i++) { - uint16_t *samples = (uint16_t*)m_audioFrame->data[i]; -+ if (samples) { - memset(samples, 0, c->frame_size * av_get_bytes_per_sample(c->sample_fmt)); -+ } - } - - return true; diff --git a/multimedia/dvdstyler/files/patch-wxVillaLib_ThumbnailFactory.cpp b/multimedia/dvdstyler/files/patch-wxVillaLib_ThumbnailFactory.cpp deleted file mode 100644 index d1b28b3d4159..000000000000 --- a/multimedia/dvdstyler/files/patch-wxVillaLib_ThumbnailFactory.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- wxVillaLib/ThumbnailFactory.cpp 2023-07-24 10:21:13.152544000 +0100 -+++ wxVillaLib/ThumbnailFactory.cpp 2023-07-24 10:18:45.440168000 +0100 -@@ -363,7 +363,7 @@ - img = decoder.GetNextFrame(); - } - if (img.Ok() && decoder.GetFrameAspectRatio() > 0 -- && labs(decoder.GetFrameAspectRatio()*100 - img.GetWidth()*100/img.GetHeight()) >= 5) { -+ && std::abs(decoder.GetFrameAspectRatio()*100 - img.GetWidth()*100/img.GetHeight()) >= 5) { - if (lround(img.GetWidth() / decoder.GetFrameAspectRatio()) > img.GetHeight()) - img.Rescale(img.GetWidth(), lround(img.GetWidth() / decoder.GetFrameAspectRatio())); - else diff --git a/multimedia/dvdstyler/files/patch-wxVillaLib_imagjpg.cpp b/multimedia/dvdstyler/files/patch-wxVillaLib_imagjpg.cpp deleted file mode 100644 index feb4c16aa200..000000000000 --- a/multimedia/dvdstyler/files/patch-wxVillaLib_imagjpg.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- wxVillaLib/imagjpg.cpp 2023-07-24 10:38:58.609790000 +0100 -+++ wxVillaLib/imagjpg.cpp 2023-07-24 10:41:28.358164000 +0100 -@@ -1,7 +1,3 @@ --#ifdef __GNUG__ --#pragma implementation "imagjpg.h" --#endif -- - // For compilers that support precompilation, includes "wx.h". - #include "wx/wxprec.h" - diff --git a/multimedia/dvdstyler/files/patch-wxVillaLib_thumb_md5.cpp b/multimedia/dvdstyler/files/patch-wxVillaLib_thumb_md5.cpp deleted file mode 100644 index 6b18f2f1c11a..000000000000 --- a/multimedia/dvdstyler/files/patch-wxVillaLib_thumb_md5.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- wxVillaLib/thumb_md5.cpp 2023-07-24 10:20:48.138290000 +0100 -+++ wxVillaLib/thumb_md5.cpp 2023-07-24 10:02:20.011636000 +0100 -@@ -199,7 +199,7 @@ - static void - thumb_md5_transform (wxUint32 buf[4], wxUint32 const in[16]) - { -- register wxUint32 a, b, c, d; -+ wxUint32 a, b, c, d; - - a = buf[0]; - b = buf[1]; diff --git a/multimedia/dvdstyler/pkg-plist b/multimedia/dvdstyler/pkg-plist index 49fe29314a11..9fc0e0dcbea3 100644 --- a/multimedia/dvdstyler/pkg-plist +++ b/multimedia/dvdstyler/pkg-plist @@ -1,333 +1,334 @@ bin/dvdstyler share/man/man1/dvdstyler.1.gz share/applications/dvdstyler.desktop %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%DATADIR%%/backgrounds/02_bi_domrep.jpg %%DATADIR%%/backgrounds/03_creta.jpg %%DATADIR%%/backgrounds/04_kiel_kanal.jpg %%DATADIR%%/backgrounds/05_easyblue.jpg %%DATADIR%%/backgrounds/10_turbulence_blue.jpg %%DATADIR%%/backgrounds/11_turbulence_green.jpg %%DATADIR%%/backgrounds/12_neon_blue.jpg %%DATADIR%%/backgrounds/13_ocean.jpg %%DATADIR%%/backgrounds/15_bordes_blue.jpg %%DATADIR%%/backgrounds/16_bordes_green.jpg %%DATADIR%%/backgrounds/20_blue.jpg %%DATADIR%%/backgrounds/21_steel.jpg %%DATADIR%%/backgrounds/22_gold.jpg %%DATADIR%%/backgrounds/23_lava.jpg %%DATADIR%%/backgrounds/30_brushed_aluminiun.jpg %%DATADIR%%/backgrounds/31_texture_border.jpg %%DATADIR%%/backgrounds/32_blue_fractal.jpg %%DATADIR%%/backgrounds/40_swans.jpg %%DATADIR%%/backgrounds/45_nevado.jpg %%DATADIR%%/backgrounds/46_paisaje.jpg %%DATADIR%%/backgrounds/Autumn1.png %%DATADIR%%/backgrounds/Autumn2.png %%DATADIR%%/backgrounds/Balloons.png %%DATADIR%%/backgrounds/Cake.jpg %%DATADIR%%/backgrounds/Camera.jpg %%DATADIR%%/backgrounds/Christmas_L1.png %%DATADIR%%/backgrounds/Christmas_L6.png %%DATADIR%%/backgrounds/Fireworks.jpg %%DATADIR%%/backgrounds/Heart.jpg %%DATADIR%%/backgrounds/Landscape.png %%DATADIR%%/backgrounds/MothersDay.jpg %%DATADIR%%/backgrounds/SnowField.png %%DATADIR%%/backgrounds/Sun.png %%DATADIR%%/backgrounds/Winter.png %%DATADIR%%/backgrounds/blue_treetops.jpg %%DATADIR%%/backgrounds/dark_wedding.jpg %%DATADIR%%/backgrounds/frosty_forest.jpg %%DATADIR%%/backgrounds/green_trees.jpg %%DATADIR%%/backgrounds/penguin.png %%DATADIR%%/backgrounds/red_sky.jpg %%DATADIR%%/backgrounds/wall.jpg %%DATADIR%%/buttons/arrow-blue.xml %%DATADIR%%/buttons/arrow-cool.xml %%DATADIR%%/buttons/arrow-double.xml %%DATADIR%%/buttons/arrow-gold.xml %%DATADIR%%/buttons/arrow-green-double.xml %%DATADIR%%/buttons/arrow-green.xml %%DATADIR%%/buttons/arrow-mirror-left.xml %%DATADIR%%/buttons/arrow-mirror-right.xml %%DATADIR%%/buttons/arrow-red.xml %%DATADIR%%/buttons/arrow-simple-v2.xml %%DATADIR%%/buttons/arrow-star.xml %%DATADIR%%/buttons/arrow-text-left.xml %%DATADIR%%/buttons/arrow-text-right.xml %%DATADIR%%/buttons/arrow.xml %%DATADIR%%/buttons/arrow2.xml %%DATADIR%%/buttons/arrow3.xml %%DATADIR%%/buttons/arrow3d-left.xml %%DATADIR%%/buttons/arrow3d-right.xml %%DATADIR%%/buttons/buttons.lst %%DATADIR%%/buttons/cancel.xml %%DATADIR%%/buttons/cancel2.xml %%DATADIR%%/buttons/circle-outline.xml %%DATADIR%%/buttons/circle.xml %%DATADIR%%/buttons/deprecated/arrow-down.xml %%DATADIR%%/buttons/deprecated/arrow-left.xml %%DATADIR%%/buttons/deprecated/arrow-next.xml %%DATADIR%%/buttons/deprecated/arrow-right.xml %%DATADIR%%/buttons/deprecated/arrow-simple.xml %%DATADIR%%/buttons/deprecated/arrow-up.xml %%DATADIR%%/buttons/deprecated/arrow2-down.xml %%DATADIR%%/buttons/deprecated/arrow2-left.xml %%DATADIR%%/buttons/deprecated/arrow2-right.xml %%DATADIR%%/buttons/deprecated/arrow2-up.xml %%DATADIR%%/buttons/deprecated/ellipse.xml %%DATADIR%%/buttons/deprecated/ellipse45.xml %%DATADIR%%/buttons/deprecated/frame-shadow.xml %%DATADIR%%/buttons/deprecated/frame.xml %%DATADIR%%/buttons/deprecated/frame45.xml %%DATADIR%%/buttons/deprecated/gold-frame.xml %%DATADIR%%/buttons/deprecated/home.xml %%DATADIR%%/buttons/deprecated/text-circle.xml %%DATADIR%%/buttons/deprecated/text-shadow.xml %%DATADIR%%/buttons/deprecated/text-square.xml %%DATADIR%%/buttons/deprecated/text-underlined-v2.xml %%DATADIR%%/buttons/deprecated/text-underlined.xml %%DATADIR%%/buttons/deprecated/text-v2.xml %%DATADIR%%/buttons/deprecated/text.xml %%DATADIR%%/buttons/dotted-frame.xml %%DATADIR%%/buttons/ellipse-v2.xml %%DATADIR%%/buttons/frame-text.xml %%DATADIR%%/buttons/frame-v2.xml %%DATADIR%%/buttons/gear.xml %%DATADIR%%/buttons/gold-frame-v2.xml %%DATADIR%%/buttons/glow_arrow.xml %%DATADIR%%/buttons/hand-left.xml %%DATADIR%%/buttons/hand-right.xml %%DATADIR%%/buttons/home-moon.xml %%DATADIR%%/buttons/home-v2.xml %%DATADIR%%/buttons/maroon-frame.xml %%DATADIR%%/buttons/movie.xml %%DATADIR%%/buttons/ok.xml %%DATADIR%%/buttons/ok2.xml %%DATADIR%%/buttons/painting_frame.xml %%DATADIR%%/buttons/pill-opacity.xml %%DATADIR%%/buttons/pill-stroke.xml %%DATADIR%%/buttons/pill.xml %%DATADIR%%/buttons/pill2.xml %%DATADIR%%/buttons/pill3.xml %%DATADIR%%/buttons/settings.xml %%DATADIR%%/buttons/star-frame.xml +%%DATADIR%%/buttons/star.xml %%DATADIR%%/buttons/sticky_note.xml %%DATADIR%%/buttons/stone.xml %%DATADIR%%/buttons/text-circle-v2.xml %%DATADIR%%/buttons/text-square-v2.xml %%DATADIR%%/buttons/text-underlined-v3.xml %%DATADIR%%/buttons/text-v3.xml %%DATADIR%%/data/colors16.rgb %%DATADIR%%/data/empty_ntsc_ac3.mpg %%DATADIR%%/data/empty_ntsc_mp2.mpg %%DATADIR%%/data/empty_pal_ac3.mpg %%DATADIR%%/data/empty_pal_mp2.mpg %%DATADIR%%/data/subtitles.rgb %%DATADIR%%/docs/help_ca.zip %%DATADIR%%/docs/help_de.zip %%DATADIR%%/docs/help_el.zip %%DATADIR%%/docs/help_en.zip %%DATADIR%%/docs/help_es.zip %%DATADIR%%/docs/help_eu.zip %%DATADIR%%/docs/help_fi.zip %%DATADIR%%/docs/help_fr.zip %%DATADIR%%/docs/help_hu.zip %%DATADIR%%/docs/help_it.zip %%DATADIR%%/docs/help_ja.zip %%DATADIR%%/docs/help_nb.zip %%DATADIR%%/docs/help_pl.zip %%DATADIR%%/docs/help_pt.zip %%DATADIR%%/docs/help_pt_BR.zip %%DATADIR%%/docs/help_ro.zip %%DATADIR%%/docs/help_ru.zip %%DATADIR%%/docs/help_si.zip %%DATADIR%%/docs/help_uk.zip %%DATADIR%%/docs/help_zh_CN.zip %%DATADIR%%/docs/help_zh_TW.zip %%DATADIR%%/objects/caption-rectangle.xml %%DATADIR%%/objects/caption-line.xml %%DATADIR%%/objects/deprecated/ellipse-v2.xml %%DATADIR%%/objects/deprecated/ellipse.xml %%DATADIR%%/objects/deprecated/frame-v2.xml %%DATADIR%%/objects/deprecated/frame.xml %%DATADIR%%/objects/deprecated/rectangle.xml %%DATADIR%%/objects/deprecated/text-shadow.xml %%DATADIR%%/objects/deprecated/text.xml %%DATADIR%%/objects/ellipse-v3.xml %%DATADIR%%/objects/ellipse45.xml %%DATADIR%%/objects/frame-v3.xml %%DATADIR%%/objects/frame45.xml %%DATADIR%%/objects/gold-frame.xml %%DATADIR%%/objects/image.xml %%DATADIR%%/objects/rectangle-v2.xml %%DATADIR%%/objects/sticky_note.xml %%DATADIR%%/objects/text-v2.xml %%DATADIR%%/rc/add.png %%DATADIR%%/rc/addVideo.png %%DATADIR%%/rc/dvdOptions.png %%DATADIR%%/rc/dvdstyler.png %%DATADIR%%/rc/error.png %%DATADIR%%/rc/files.png %%DATADIR%%/rc/help.png %%DATADIR%%/rc/justifyCenter.png %%DATADIR%%/rc/justifyCenterSelected.png %%DATADIR%%/rc/justifyLeft.png %%DATADIR%%/rc/justifyLeftSelected.png %%DATADIR%%/rc/justifyRight.png %%DATADIR%%/rc/justifyRightSelected.png %%DATADIR%%/rc/logo.png %%DATADIR%%/rc/logoSmall.png %%DATADIR%%/rc/minus.png %%DATADIR%%/rc/move.cur %%DATADIR%%/rc/nesw.cur %%DATADIR%%/rc/new.png %%DATADIR%%/rc/noaudio.png %%DATADIR%%/rc/nwse.cur %%DATADIR%%/rc/ok.png %%DATADIR%%/rc/open.png %%DATADIR%%/rc/plus.png %%DATADIR%%/rc/preferences.png %%DATADIR%%/rc/refresh.png %%DATADIR%%/rc/remove.png %%DATADIR%%/rc/rotate.cur %%DATADIR%%/rc/run.png %%DATADIR%%/rc/save.png %%DATADIR%%/rc/settings.png %%DATADIR%%/templates/Basic/Wall.dvdt %%DATADIR%%/templates/Basic/Wall.png %%DATADIR%%/templates/Basic/blue.dvdt %%DATADIR%%/templates/Basic/blue.png %%DATADIR%%/templates/Basic/blueWS.dvdt %%DATADIR%%/templates/Basic/blueWS.png %%DATADIR%%/templates/Basic/frameText.dvdt %%DATADIR%%/templates/Basic/frameText.png %%DATADIR%%/templates/Basic/frameTextAuto.dvdt %%DATADIR%%/templates/Basic/frameTextAuto.png %%DATADIR%%/templates/Basic/frameTextAutoWS.dvdt %%DATADIR%%/templates/Basic/frameTextAutoWS.png %%DATADIR%%/templates/Basic/frameTextWS.dvdt %%DATADIR%%/templates/Basic/frameTextWS.png %%DATADIR%%/templates/Basic/neon.dvdt %%DATADIR%%/templates/Basic/neon.png %%DATADIR%%/templates/Basic/neonWS.dvdt %%DATADIR%%/templates/Basic/neonWS.png %%DATADIR%%/templates/Basic/ocean.dvdt %%DATADIR%%/templates/Basic/ocean.png %%DATADIR%%/templates/Basic/oceanWS.dvdt %%DATADIR%%/templates/Basic/oceanWS.png %%DATADIR%%/templates/Basic/textAuto1.dvdt %%DATADIR%%/templates/Basic/textAuto1.png %%DATADIR%%/templates/Basic/textAuto1WS.dvdt %%DATADIR%%/templates/Basic/textAuto1WS.png %%DATADIR%%/templates/Basic/turbulence.dvdt %%DATADIR%%/templates/Basic/turbulence.png %%DATADIR%%/templates/Basic/turbulenceWS.dvdt %%DATADIR%%/templates/Basic/turbulenceWS.png %%DATADIR%%/templates/Birthday/Balloons.dvdt %%DATADIR%%/templates/Birthday/Balloons.png %%DATADIR%%/templates/Birthday/BalloonsWS.dvdt %%DATADIR%%/templates/Birthday/BalloonsWS.png %%DATADIR%%/templates/Birthday/Cake.dvdt %%DATADIR%%/templates/Birthday/Cake.png %%DATADIR%%/templates/Birthday/CakeWS.dvdt %%DATADIR%%/templates/Birthday/CakeWS.png %%DATADIR%%/templates/Christmas/ChristmasL1.dvdt %%DATADIR%%/templates/Christmas/ChristmasL1.png %%DATADIR%%/templates/Christmas/ChristmasL1WS.dvdt %%DATADIR%%/templates/Christmas/ChristmasL1WS.png %%DATADIR%%/templates/Christmas/ChristmasL6.dvdt %%DATADIR%%/templates/Christmas/ChristmasL6.png %%DATADIR%%/templates/Christmas/ChristmasL6WS.dvdt %%DATADIR%%/templates/Christmas/ChristmasL6WS.png %%DATADIR%%/templates/Christmas/Fireworks.dvdt %%DATADIR%%/templates/Christmas/Fireworks.png %%DATADIR%%/templates/Christmas/FireworksWS.dvdt %%DATADIR%%/templates/Christmas/FireworksWS.png %%DATADIR%%/templates/Miscellaneous/BlueFractal.dvdt %%DATADIR%%/templates/Miscellaneous/BlueFractal.png %%DATADIR%%/templates/Miscellaneous/Penguin.dvdt %%DATADIR%%/templates/Miscellaneous/Penguin.png %%DATADIR%%/templates/Miscellaneous/RedSky.dvdt %%DATADIR%%/templates/Miscellaneous/RedSky.png %%DATADIR%%/templates/Nature/BlueTreetops.dvdt %%DATADIR%%/templates/Nature/BlueTreetops.png %%DATADIR%%/templates/Nature/FrostyForest.dvdt %%DATADIR%%/templates/Nature/FrostyForest.png %%DATADIR%%/templates/Nature/GreenTrees.dvdt %%DATADIR%%/templates/Nature/GreenTrees.png %%DATADIR%%/templates/Seasons/Autumn.dvdt %%DATADIR%%/templates/Seasons/Autumn.png %%DATADIR%%/templates/Seasons/Autumn2.dvdt %%DATADIR%%/templates/Seasons/Autumn2.png %%DATADIR%%/templates/Seasons/AutumnWS.dvdt %%DATADIR%%/templates/Seasons/AutumnWS.png %%DATADIR%%/templates/Seasons/Landscape.dvdt %%DATADIR%%/templates/Seasons/Landscape.png %%DATADIR%%/templates/Seasons/LandscapeWS.dvdt %%DATADIR%%/templates/Seasons/LandscapeWS.png %%DATADIR%%/templates/Seasons/SnowField.dvdt %%DATADIR%%/templates/Seasons/SnowField.png %%DATADIR%%/templates/Seasons/SnowFieldWS.dvdt %%DATADIR%%/templates/Seasons/SnowFieldWS.png %%DATADIR%%/templates/Seasons/Sun.dvdt %%DATADIR%%/templates/Seasons/Sun.png %%DATADIR%%/templates/Seasons/Winter.dvdt %%DATADIR%%/templates/Seasons/Winter.png %%DATADIR%%/templates/Travel/Camera.dvdt %%DATADIR%%/templates/Travel/Camera.png %%DATADIR%%/templates/Travel/CameraWS.dvdt %%DATADIR%%/templates/Travel/CameraWS.png %%DATADIR%%/templates/Travel/travel.dvdt %%DATADIR%%/templates/Travel/travel.png %%DATADIR%%/templates/Travel/travelWS.dvdt %%DATADIR%%/templates/Travel/travelWS.png %%DATADIR%%/templates/Wedding/DarkWedding.dvdt %%DATADIR%%/templates/Wedding/DarkWedding.png %%DATADIR%%/transitions/fade.xml %%DATADIR%%/transitions/wipeBottomToTop.xml %%DATADIR%%/transitions/wipeLeftToRight.xml %%DATADIR%%/transitions/wipeRightToLeft.xml %%DATADIR%%/transitions/wipeTopToBottom.xml share/locale/ar/LC_MESSAGES/dvdstyler.mo share/locale/bg/LC_MESSAGES/dvdstyler.mo share/locale/ca/LC_MESSAGES/dvdstyler.mo share/locale/cs/LC_MESSAGES/dvdstyler.mo share/locale/da/LC_MESSAGES/dvdstyler.mo share/locale/de/LC_MESSAGES/dvdstyler.mo share/locale/el/LC_MESSAGES/dvdstyler.mo share/locale/es/LC_MESSAGES/dvdstyler.mo share/locale/es_ar/LC_MESSAGES/dvdstyler.mo share/locale/eu/LC_MESSAGES/dvdstyler.mo share/locale/fi/LC_MESSAGES/dvdstyler.mo share/locale/fr/LC_MESSAGES/dvdstyler.mo share/locale/hu/LC_MESSAGES/dvdstyler.mo share/locale/hy/LC_MESSAGES/dvdstyler.mo share/locale/it/LC_MESSAGES/dvdstyler.mo share/locale/ja/LC_MESSAGES/dvdstyler.mo share/locale/ko/LC_MESSAGES/dvdstyler.mo share/locale/mk/LC_MESSAGES/dvdstyler.mo share/locale/nb/LC_MESSAGES/dvdstyler.mo share/locale/nl/LC_MESSAGES/dvdstyler.mo share/locale/pl/LC_MESSAGES/dvdstyler.mo share/locale/pt/LC_MESSAGES/dvdstyler.mo share/locale/pt_BR/LC_MESSAGES/dvdstyler.mo share/locale/ro/LC_MESSAGES/dvdstyler.mo share/locale/ru/LC_MESSAGES/dvdstyler.mo share/locale/si/LC_MESSAGES/dvdstyler.mo share/locale/sk/LC_MESSAGES/dvdstyler.mo share/locale/sl/LC_MESSAGES/dvdstyler.mo share/locale/sr/LC_MESSAGES/dvdstyler.mo share/locale/sv/LC_MESSAGES/dvdstyler.mo share/locale/tr/LC_MESSAGES/dvdstyler.mo share/locale/uk/LC_MESSAGES/dvdstyler.mo share/locale/uz/LC_MESSAGES/dvdstyler.mo share/locale/vi/LC_MESSAGES/dvdstyler.mo share/locale/zh_CN/LC_MESSAGES/dvdstyler.mo share/locale/zh_TW/LC_MESSAGES/dvdstyler.mo share/metainfo/dvdstyler.appdata.xml share/pixmaps/dvdstyler.png