~ubuntu-branches/ubuntu/wily/tupi/wily-proposed

« back to all changes in this revision

Viewing changes to tools/update_dylib_path.rb

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-06-23 12:48:05 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130623124805-9xq9kggclxvli7r9
Tags: 0.2+git02-1
* New upstream release [June 2013].
  + ready for "libav9" transition.
* Build-Depends:
  + libquazip-dev
* Packaging updates:
  + added ugly override for broken upstream libav detection;
    "pkg-config" is added to Build-Depends for that matter.
  + rules simplified as upstream introduced support for $(DESTDIR).
  + re-build translations after configure.
  + re-build/re-compress man page.
  + dropped all patches.
  + updated lintian-overrides, new overrides for
    "library-not-linked-against-libc" in private libs.
  + ship all icons and docs in -data package.
  + data de-duplication in -data package.
  + debian/watch to check for tags at github as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/ruby
2
2
 
 
3
###########################################################################
 
4
#   Project TUPI: Magia 2D                                                #
 
5
#   Project Contact: info@maefloresta.com                                 #
 
6
#   Project Website: http://www.maefloresta.com                           #
 
7
#   Project Leader: Gustav Gonzalez <info@maefloresta.com>                #
 
8
#                                                                         #
 
9
#   Developers:                                                           #
 
10
#   2010:                                                                 #
 
11
#    Gustavo Gonzalez / xtingray                                          #
 
12
#                                                                         #
 
13
#   KTooN's versions:                                                     #
 
14
#                                                                         #
 
15
#   2006:                                                                 #
 
16
#    David Cuadrado                                                       #
 
17
#    Jorge Cuadrado                                                       #
 
18
#   2003:                                                                 #
 
19
#    Fernado Roldan                                                       #
 
20
#    Simena Dinas                                                         #
 
21
#                                                                         #
 
22
#   Copyright (C) 2010 Gustav Gonzalez - http://www.maefloresta.com       #
 
23
#   License:                                                              #
 
24
#   This program is free software; you can redistribute it and/or modify  #
 
25
#   it under the terms of the GNU General Public License as published by  #
 
26
#   the Free Software Foundation; either version 3 of the License, or     #
 
27
#   (at your option) any later version.                                   #
 
28
#                                                                         #
 
29
#   This program is distributed in the hope that it will be useful,       #
 
30
#   but WITHOUT ANY WARRANTY; without even the implied warranty of        #
 
31
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         #
 
32
#   GNU General Public License for more details.                          #
 
33
#                                                                         #
 
34
#   You should have received a copy of the GNU General Public License     #
 
35
#   along with this program.  If not, see <http://www.gnu.org/licenses/>. #
 
36
###########################################################################
 
37
 
3
38
library = ARGV[0]
4
39
oldpath  = ARGV[1]
5
40
newpath = ARGV[2]