~ubuntu-branches/ubuntu/maverick/wxwidgets2.8/maverick-proposed

« back to all changes in this revision

Viewing changes to samples/richtext/makefile.unx

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2007-11-06 18:25:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071106182513-809agqds6igh7mqo
Tags: 2.8.6.1-0ubuntu1
* New upstream version, based on the upstream tarball
  wxPython-src-2.8.6.1.tar.bz2, renamed debian to debian-upstream.
* Provide a get-orig-source target to do the repackaging.
* Fix "substvar-source-version-is-deprecated" lintian warnings.
* Remove duplicate Description field in debian/control.
* Add "\" at the end of line 8 in debian/python-wxtools.menu to fix
  "bad-test-in-menu-item" lintian error.
* Provide .xpm icons to fix "menu-icon-not-in-xpm-format" lintian errors,
  changed Icon field in debian/python-wxtools.menu.
* Fix "wrong-name-for-upstream-changelog" lintian warnings.
* Remove "Application;" from Categories field in debian/pycrust.desktop,
  debian/pyshell.desktop, debian/xrced.desktop.
* Switch "Apps" to "Applications" in debian/python-wxtools.menu to fix
  "menu-item-uses-apps-section" lintian warnings.
* Drop the icon extension from debian/pycrust.desktop,
  debian/pyshell.desktop, debian/xrced.desktop.
* Add dpatch support.
* Add "WX_CONFIG" patch.
* debian/rules:
  - added .xpm icons to install-gtk-py-tools target
  - added "docs/changes.txt" to dh_installchangelogs in binary-common target
  - added "\" at the end of "install-examples install-msw-dev
    install-msw-dbg install-headers-msw" line in .PHONY

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# =========================================================================
2
2
#     This makefile was generated by
3
 
#     Bakefile 0.2.1 (http://bakefile.sourceforge.net)
 
3
#     Bakefile 0.2.2 (http://bakefile.sourceforge.net)
4
4
#     Do not modify, all changes will be overwritten!
5
5
# =========================================================================
6
6
 
11
11
# -------------------------------------------------------------------------
12
12
 
13
13
# C++ compiler 
14
 
CXX = g++
 
14
CXX := g++
15
15
 
16
16
# Standard flags for C++ 
17
 
CXXFLAGS = 
 
17
CXXFLAGS := 
18
18
 
19
19
# Standard preprocessor flags (common for CC and CXX) 
20
 
CPPFLAGS = 
 
20
CPPFLAGS := 
21
21
 
22
22
# Standard linker flags 
23
 
LDFLAGS = 
 
23
LDFLAGS := 
24
24
 
25
25
# Location and arguments of wx-config script 
26
 
WX_CONFIG = wx-config
 
26
WX_CONFIG := wx-config
27
27
 
28
28
# C++ flags to use with wxWidgets code 
29
 
WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
 
29
WX_CXXFLAGS := `$(WX_CONFIG) --cxxflags`
30
30
 
31
31
 
32
32