~ubuntu-branches/ubuntu/precise/shotwell/precise-updates

« back to all changes in this revision

Viewing changes to src/editing_tools/mk/editing_tools.mk

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-01-11 15:59:04 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20120111155904-q6v4rpavyw50jfwz
Tags: 0.11.91-0ubuntu1
* New upstream version using GTK3 (lp: #871034),
  should fix lp: #800459, #881896, #887357, #888363, #898028
* Refreshed patches for the new version
* debian/control:
  - updated build-dependencies for GTK3
* debian/patches/99git_libraw_api.patch:
  - dropped, the patch is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# UNIT_NAME is the Vala namespace.  A file named UNIT_NAME.vala must be in this directory with
 
3
# a init() and terminate() function declared in the namespace.
 
4
UNIT_NAME := EditingTools
 
5
 
 
6
# UNIT_DIR should match the subdirectory the files are located in.  Generally UNIT_NAME in all
 
7
# lowercase.  The name of this file should be UNIT_DIR.mk.
 
8
UNIT_DIR := editing_tools
 
9
 
 
10
# All Vala files in the unit should be listed here with no subdirectory prefix.
 
11
#
 
12
# NOTE: Do *not* include the unit's master file, i.e. UNIT_NAME.vala.
 
13
UNIT_FILES :=
 
14
 
 
15
# Any unit this unit relies upon (and should be initialized before it's initialized) should
 
16
# be listed here using its Vala namespace.
 
17
#
 
18
# NOTE: All units are assumed to rely upon the unit-unit.  Do not include that here.
 
19
UNIT_USES :=
 
20
 
 
21
# List any additional files that are used in the build process as a part of this unit that should
 
22
# be packaged in the tarball.  File names should be relative to the unit's home directory.
 
23
UNIT_RC :=
 
24
 
 
25
# unitize.mk must be called at the end of each UNIT_DIR.mk file.
 
26
include unitize.mk
 
27