~ubuntu-branches/ubuntu/natty/inkscape/natty

« back to all changes in this revision

Viewing changes to packaging/macosx/osx-app.sh

  • Committer: Bazaar Package Importer
  • Author(s): Alex Valavanis
  • Date: 2010-09-12 19:44:58 UTC
  • mfrom: (1.1.12 upstream) (45.1.3 maverick)
  • Revision ID: james.westby@ubuntu.com-20100912194458-4sjwmbl7dlsrk5dc
Tags: 0.48.0-1ubuntu1
* Merge with Debian unstable (LP: #628048, LP: #401567, LP: #456248, 
  LP: #463602, LP: #591986)
* debian/control: 
  - Ubuntu maintainers
  - Promote python-lxml, python-numpy, python-uniconvertor to Recommends.
  - Demote pstoedit to Suggests (universe package).
  - Suggests ttf-dejavu instead of ttf-bitstream-vera (LP: #513319)
* debian/rules:
  - Run intltool-update on build (Ubuntu-specific).
  - Add translation domain to .desktop files (Ubuntu-specific).
* debian/dirs:
  - Add usr/share/pixmaps.  Allow inkscape.xpm installation
* drop 50-poppler-API.dpatch (now upstream)
* drop 51-paste-in-unwritable-directory.dpatch (now upstream) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
        exit 1
154
154
fi
155
155
 
156
 
if [ ! -e "$LIBPREFIX/share/themes/Clearlooks-Quicksilver" ]; then
157
 
        echo "Missing Clearlooks -- please install gtk2-clearlooks and try again." >&2
 
156
if ! pkg-config --exists gtk-engines-2; then
 
157
        echo "Missing gtk-engines2 -- please install gtk-engines2 and try again." >&2
158
158
        exit 1
159
159
fi
160
160
 
161
 
if [ ! -e "$LIBPREFIX/lib/gnome-vfs-2.0" ]; then
162
 
        echo "Missing gnome-vfs -- please install gnome-vfs and try again." >&2
 
161
if ! pkg-config --exists gnome-vfs-2.0; then
 
162
        echo "Missing gnome-vfs2 -- please install gnome-vfs2 and try again." >&2
163
163
        exit 1
164
164
fi
165
165
 
356
356
        cp -f $libfile $package/Contents/Resources/lib
357
357
done
358
358
 
 
359
# Some libraries don't seem to have write permission, fix this.
 
360
chmod -R u+w $package/Contents/Resources/lib
359
361
 
360
362
# Strip libraries and executables if requested
361
363
#----------------------------------------------------------