~ubuntu-branches/ubuntu/quantal/glom/quantal

« back to all changes in this revision

Viewing changes to glom/utility_widgets/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2009-01-11 17:12:01 UTC
  • mfrom: (1.1.39 upstream)
  • Revision ID: james.westby@ubuntu.com-20090111171201-0ov9zh1fxfueshxc
Tags: 1.8.5-0ubuntu1
* New upstream release (LP: #256701), fixes LP bugs: 
  + Clear the text in property dialogs for text items (LP: #309147)
  + Don't crash when showing and then hiding the grid (LP: #303453)
  + Temporarily remember the sort order so it is the same when navigating 
    away and back (LP: #303422)
  + Use the list's sort order for the top-level records in the report 
    (LP: #303425)
  + Users/Groups: Disable drag-and-drop for the treeview, because it is
    useless and confusing (LP: #299573)
  + Import: Sort the fields list alphabetically (LP: #306593)
  + delete primary key make unusuable the database (LP: #299549)
  + Spanish translate incomplete (LP: #299556)
  + import date format error (LP: #299591)
  + can't delete data from table list view (LP: #299853)
  + Field definition: default value not saved (LP: #299896)
  + reports crashing (LP: #300054)
  + Year error with date fields (LP: #300057)
  + list view: 2 records added instead of 1 (LP: #300819)
* debian/control: Refreshed dependencies for libglom-dev.
* debian/control: Updated build-deps to match configure checks. goocavnasmm
  build-dep bumped to version without .la files.
* debian/rules: Don't delete the directory containing the templates.
* debian/control, debian/rules, debian/glom-doc.*: Split out
  arch-independent manual and examples into separate package glom-doc, which
  is now recommended by glom (glom will still work if they're not available)
* debian/copyright: Rewritten to new machine-readable format. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#INCLUDES = -I@top_srcdir@/ $(GLOM_CFLAGS)
 
1
#AM_CPPFLAGS = -I@top_srcdir@/ $(GLOM_CFLAGS)
2
2
 
3
 
SUBDIRS = adddel db_adddel
 
3
SUBDIRS = cellrendererlist adddel db_adddel canvas calendar egg 
4
4
 
5
5
gladedir = $(datadir)/glom/glade/
 
6
glom_icon_dir = $(datadir)/glom/pixmaps
6
7
 
7
8
# We define GLOM_GLADEDIR so that we can get the installed .glade file at runtime.
8
 
INCLUDES = -I@top_srcdir@/ $(GLOM_CFLAGS) $(PYTHON_INCLUDES) \
 
9
AM_CPPFLAGS = -I@top_srcdir@/ $(GLOM_CFLAGS) $(PYTHON_INCLUDES) \
9
10
           -DGLOM_GLADEDIR=\""$(gladedir)/"\" \
 
11
           -DGLOM_ICON_DIR=\""$(glom_icon_dir)"\" \
10
12
           -DDATADIR=\""$(datadir)"\"
11
13
 
12
14
noinst_LIBRARIES = libutility_widgets.a
13
15
libutility_widgets_a_SOURCES = alignment_justified.cc alignment_justified.h \
14
16
                               dialog_properties.cc dialog_properties.h \
15
17
                               flowtable.cc flowtable.h \
16
 
                               flowtablewithfields.cc flowtablewithfields.h \
17
18
                               datawidget.h datawidget.cc \
18
19
                               buttonglom.h buttonglom.cc \
19
20
                               notebookglom.h notebookglom.cc \
22
23
                               comboglomchoicesbase.h comboglomchoicesbase.cc \
23
24
                               comboentryglom.h comboentryglom.cc \
24
25
                               placeholder.cc placeholder.h \
 
26
                               placeholder-glom.h  placeholder-glom.cc \
25
27
                               table_columns.cc table_columns.h \
26
28
                               layoutwidgetbase.cc layoutwidgetbase.h \
27
29
                               layoutwidgetfield.cc layoutwidgetfield.h \
28
30
                               textviewglom.h textviewglom.cc \
29
31
                               combo_textglade.h combo_textglade.cc \
30
 
                               cellrendererlist.h cellrendererlist.cc \
31
32
                               comboentry_currency.h comboentry_currency.cc \
32
33
                               imageglom.h imageglom.cc \
33
34
                               labelglom.h labelglom.cc \
34
35
                               dialog_choose_id.cc dialog_choose_id.h \
35
 
                               dialog_choose_date.cc dialog_choose_date.h
 
36
                               dialog_choose_date.cc dialog_choose_date.h \
 
37
                               checkglom.h checkglom.cc \
 
38
                               layoutwidgetutils.h layoutwidgetutils.cc \
 
39
                               dialog_layoutitem_properties.cc dialog_layoutitem_properties.h \
 
40
                               dialog_flowtable.cc  dialog_flowtable.h \
 
41
                               layoutwidgetmenu.cc  layoutwidgetmenu.h
36
42
 
37
43
if !GLOM_ENABLE_CLIENT_ONLY
38
 
libutility_widgets_a_SOURCES += filechooserdialog.cc filechooserdialog.h
 
44
libutility_widgets_a_SOURCES += filechooserdialog_saveextras.cc filechooserdialog_saveextras.h \
 
45
                                layouttoolbarbutton.cc layouttoolbarbutton.h \
 
46
                                layouttoolbar.cc layouttoolbar.h \
 
47
                                sidebar.h sidebar.cc \
 
48
                                flowtable_dnd.h  flowtable_dnd.cc \
 
49
                                notebooklabelglom.h notebooklabelglom.cc
 
50
                                
39
51
endif
40
52
 
41
 
libutility_widgets_a_LIBADD = adddel/libutility_widgets_adddel.a \
42
 
                              db_adddel/libutility_widgets_db_adddel.a
43
 
 
44
 
 
45
 
noinst_PROGRAMS = test
46
 
 
47
 
test_SOURCES = test_flowtable.cc flowtable.cc flowtable.h
48
 
 
49
 
test_LDADD =  $(GLOM_LIBS)
 
53
 
 
54
libutility_widgets_a_LIBADD = cellrendererlist/libutility_widgets_cellrendererlist.a \
 
55
                              adddel/libutility_widgets_adddel.a \
 
56
                              db_adddel/libutility_widgets_db_adddel.a \
 
57
                              canvas/libutility_widgets_canvas.a
 
58
 
 
59
noinst_PROGRAMS = test_flowtable
 
60
test_flowtable_SOURCES = test_flowtable.cc flowtable.cc flowtable.h
 
61
test_flowtable_LDADD =  $(GLOM_LIBS)
 
62
 
 
63
 
 
64
 
 
65
 
 
66
 
 
67
 
 
68
 
 
69
 
 
70
 
 
71
 
50
72