system/brasero: Updated for version 2.32.1.

The old version does not compile with totem-pl-parser version in SBo
Thanks to slacksam for reporting via LQ

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2013-11-28 23:54:23 +07:00 committed by Robby Workman
parent 4704a98d15
commit 0a7821a639
4 changed files with 13 additions and 18 deletions

View file

@ -2,5 +2,5 @@ Brasero is a application to burn CD/DVD for the Gnome Desktop. It is
designed to be as simple as possible and has some unique features to designed to be as simple as possible and has some unique features to
enable users to create their discs easily and quickly. enable users to create their discs easily and quickly.
libburn and libisofs are optional dependencies, and they will be libburn, libisofs, and totem-pl-parser are optional dependencies,
used if they are installed. and they will be used if they are installed.

View file

@ -5,8 +5,8 @@
# Written by Luis Henrique <lmello.009@gmail.com> # Written by Luis Henrique <lmello.009@gmail.com>
PRGNAM=brasero PRGNAM=brasero
VERSION=${VERSION:-2.28.3} VERSION=${VERSION:-2.32.1}
BUILD=${BUILD:-2} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then if [ -z "$ARCH" ]; then
@ -71,7 +71,7 @@ CXXFLAGS="$SLKCFLAGS" \
--enable-shared=yes \ --enable-shared=yes \
--enable-gtk-doc=yes \ --enable-gtk-doc=yes \
--disable-scrollkeeper \ --disable-scrollkeeper \
--disable-schemas-install \ --disable-schemas-compile \
--enable-nautilus=no \ --enable-nautilus=no \
--enable-libburnia=$LIBBURNIA --enable-libburnia=$LIBBURNIA

View file

@ -1,8 +1,8 @@
PRGNAM="brasero" PRGNAM="brasero"
VERSION="2.28.3" VERSION="2.32.1"
HOMEPAGE="http://projects.gnome.org/brasero" HOMEPAGE="http://projects.gnome.org/brasero"
DOWNLOAD="http://ftp.acc.umu.se/pub/GNOME/sources/brasero/2.28/brasero-2.28.3.tar.bz2" DOWNLOAD="http://ftp.acc.umu.se/pub/GNOME/sources/brasero/2.32/brasero-2.32.1.tar.bz2"
MD5SUM="6ef5cc07325f1869577a85d15ac67eb3" MD5SUM="621293d228d895960fd297e28589fddf"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="libunique" REQUIRES="libunique"

View file

@ -1,13 +1,3 @@
schema_install() {
SCHEMA="$1"
GCONF_CONFIG_SOURCE="xml::etc/gconf/gconf.xml.defaults" \
chroot . gconftool-2 --makefile-install-rule \
/etc/gconf/schemas/$SCHEMA \
1>/dev/null
}
schema_install brasero.schemas
if [ -x /usr/bin/update-desktop-database ]; then if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi fi
@ -22,3 +12,8 @@ if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
fi fi
fi fi
if [ -e usr/share/glib-2.0/schemas ]; then
if [ -x /usr/bin/glib-compile-schemas ]; then
/usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
fi
fi