multimedia/dvdstyler: Updated for version 2.3rc2.

This commit adds also a patch to fix building without gnome support.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
ponce 2012-08-21 17:45:33 +02:00 committed by Robby Workman
parent a1df9ce03e
commit 3dc7f010be
4 changed files with 19 additions and 6 deletions

View file

@ -2,5 +2,3 @@ DVDStyler is a cross-platform free DVD authoring application for the
creation of professional-looking DVDs. It allows not only burning of
video files on DVD that can be played practically on any standalone DVD
player, but also creation of individually designed DVD menus.
Note that wxPython needs to have been built with the media library.

View file

@ -0,0 +1,11 @@
--- wxVillaLib/ThumbnailFactory.cpp.org 2012-08-20 07:10:49.071537020 +0200
+++ wxVillaLib/ThumbnailFactory.cpp 2012-08-20 07:11:27.153489557 +0200
@@ -251,7 +251,7 @@
free(fnameEscaped);
wxString fname = filename;
if (info->mimeType == _T("concat"))
- fname = filename.substr(7).BeforeFirst(wxT('|'));
+ fname = filename.Mid(7).BeforeFirst(wxT('|'));
info->mtime = wxFileName(fname).GetModificationTime();
#endif
return info;

View file

@ -6,7 +6,7 @@
PRGNAM=dvdstyler
SPRGNAM=DVDStyler
VERSION=${VERSION:-2.2b2}
VERSION=${VERSION:-2.3rc2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -57,6 +57,10 @@ if [ -f /usr/include/libavfilter/buffersink.h ]; then
sed -i "s|vsink_buffer\.h|buffersink.h|" src/mediatrc_ffmpeg.cpp
fi
# This fixes build when gnome support is disabled
# http://sourceforge.net/tracker/?func=detail&aid=3559741&group_id=92301&atid=600266
patch -p0 < $CWD/dvdstyler-2.3rc2-nognome.patch
LDFLAGS="-ljpeg" \
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \

View file

@ -1,8 +1,8 @@
PRGNAM="dvdstyler"
VERSION="2.2b2"
VERSION="2.3rc2"
HOMEPAGE="http://www.dvdstyler.org/"
DOWNLOAD="http://download.sourceforge.net/dvdstyler/DVDStyler-2.2b2.tar.bz2"
MD5SUM="63468530e58b440dafcb89dcd68743b7"
DOWNLOAD="http://download.sourceforge.net/dvdstyler/DVDStyler-2.3rc2.tar.bz2"
MD5SUM="2aaa5d717e51ad36900f8d543b9ae6a9"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="dvdauthor ffmpeg libavc1394 libmspack libquicktime mjpegtools mpgtx wxPython wxsvg"