~ubuntu-branches/ubuntu/quantal/xscreensaver/quantal

« back to all changes in this revision

Viewing changes to OSX/update-info-plist.pl

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Bicha
  • Date: 2011-05-18 15:39:48 UTC
  • mfrom: (1.1.11 upstream) (2.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20110518153948-8w0vyzy9lbiimpez
Tags: 5.13-1ubuntu1
* Merge with Debian unstable, remaining Ubuntu changes:
* debian/control:
  - Build-Depend on ubuntu-artwork
  - Add Vcs-Bzr link
  - Move xli | xloadimage xscreensaver recommends to suggests
  - Add/Update replaces with Ubuntu versions
  - Update package descriptions to list Ubuntu screensavers
* debian/rules:
  - Use /usr/share/backgrounds as image directory
  - Add translation domain to .desktop files
* debian/source_xscreensaver.py: 
  - Add apport hook
* debian/split-hacks.config:
  - Use different set of default hacks than Debian
* debian/xscreensaver.dirs
  - Install /usr/share/backgrounds. By default, settings search in
    /usr/share/backgrounds and without it, it displays an error
* debian/patches/53_XScreenSaver.ad.in.patch:
  - Use Ubuntu branding

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl -w
2
 
# Copyright � 2006-2010 Jamie Zawinski <jwz@jwz.org>
 
2
# Copyright � 2006-2011 Jamie Zawinski <jwz@jwz.org>
3
3
#
4
4
# Permission to use, copy, modify, distribute, and sell this software and its
5
5
# documentation for any purpose is hereby granted without fee, provided that
23
23
use strict;
24
24
 
25
25
my $progname = $0; $progname =~ s@.*/@@g;
26
 
my $version = q{ $Revision: 1.14 $ }; $version =~ s/^[^0-9]+([0-9.]+).*$/$1/;
 
26
my $version = q{ $Revision: 1.15 $ }; $version =~ s/^[^0-9]+([0-9.]+).*$/$1/;
 
27
 
 
28
$ENV{PATH} = "/usr/local/bin:$ENV{PATH}";   # for seticon
 
29
 
27
30
 
28
31
my $verbose = 1;
29
32