~siretart/gxine/bug.542506

« back to all changes in this revision

Viewing changes to gxine-test

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-03-21 11:24:59 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080321112459-igb0jy01nytpdrzt
Tags: 0.5.901-1ubuntu1
* merge debian changes for hardy PPA. Remaining changes:
  - debian/control: added Xb-Npp-xxx tags accordingly to "firefox distro
    add-on suport" spec,
    (https://blueprints.launchpad.net/ubuntu/+spec/firefox-distro-addon-support)
* Feature Freeze exception granted in LP: #204563
* New upstream release fixes playing DVDs. LP: #128864
* mime.default: add "x-content/video-dvd;x-content/video-vcd;x-content/video-svcd;"
  to get it listed as a player for dvd and video cds in nautilus. Thanks to
  Sebastien Bacher for the hint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
export GXINE_MISCDIR="$GXINE_ROOT/misc"
28
28
export GXINE_CONFDIR="$GXINE_ROOT/misc"
29
29
 
30
 
cleanup ()
31
 
{
32
 
  test "$GDBCMD" != '' && rm -f "$GDBCMD"
33
 
}
34
 
 
35
30
if test "$USEGDB" = y; then
36
 
  # bash: exec gdb "$GXINE_ROOT/src/gxine" <(echo set args "$@")
37
 
  unset GDBCMD
38
 
  trap cleanup EXIT
39
 
  GDBCMD="`tempfile`"
40
 
  echo set args "$@" >>"$GDBCMD"
41
 
  gdb "$GXINE_ROOT/src/gxine" -x "$GDBCMD"
 
31
  gdb --args "$GXINE_ROOT/src/gxine" "$@"
42
32
else
43
33
  exec "$GXINE_ROOT/src/gxine" "$@"
44
34
fi