~ubuntu-branches/ubuntu/saucy/gnomescan/saucy

« back to all changes in this revision

Viewing changes to doc/gnomescanui/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2009-06-29 21:59:52 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090629215952-pkuzs5p6j0zewmvp
Tags: 0.6.2-0ubuntu1
* New upstream release 0.6.2 (0.7.1 seems to crash and still doesn't have
  all 0.6.2 features).
* Fix debhelper-but-no-misc-depends lintian warnings.
* Fix substvar-source-version-is-deprecated lintian warnings.
* Bump Standards-Version to 3.8.2.
* Fix binary-control-field-duplicates-source lintian infos.
* Fix duplicate-short-description lintian infos.
* debian/control: add libgegl-0.0-dev (>= 0.0.21) to Build-Depends field.
* Don't provide libgnomescanui* packages, upstream doesn't ship
  libgnomescanui files anymore.
* Update debian/watch file.
* debian/rules: do not include simple-patchsys.mk.
* debian/control: adjust dependencies.
* debian/control: add libglade2-dev (>= 2.6) to Build-Depends field.
* Update debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
 
3
 
# We require automake 1.6 at least.
4
 
AUTOMAKE_OPTIONS = 1.6
5
 
 
6
 
# This is a blank Makefile.am for using gtk-doc.
7
 
# Copy this to your project's API docs directory and modify the variables to
8
 
# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
9
 
# of using the various options.
10
 
 
11
 
# The name of the module, e.g. 'glib'.
12
 
DOC_MODULE=gnomescanui
13
 
 
14
 
# The top-level SGML file. You can change this if you want to.
15
 
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
16
 
 
17
 
# The directory containing the source code. Relative to $(srcdir).
18
 
# gtk-doc will search all .c & .h files beneath here for inline comments
19
 
# documenting the functions and macros.
20
 
# e.g. DOC_SOURCE_DIR=../../../gtk
21
 
DOC_SOURCE_DIR=$(top_srcdir)/libgnomescanui
22
 
 
23
 
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
24
 
SCANGOBJ_OPTIONS=
25
 
 
26
 
# Extra options to supply to gtkdoc-scan.
27
 
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" 
28
 
SCAN_OPTIONS=
29
 
 
30
 
# Extra options to supply to gtkdoc-mkdb.
31
 
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
32
 
MKDB_OPTIONS=--sgml-mode --output-format=xml
33
 
 
34
 
# Extra options to supply to gtkdoc-mktmpl
35
 
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
36
 
MKTMPL_OPTIONS=
37
 
 
38
 
# Extra options to supply to gtkdoc-fixref. Not normally needed.
39
 
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
40
 
FIXXREF_OPTIONS=
41
 
 
42
 
# Used for dependencies. The docs will be rebuilt if any of these change.
43
 
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
44
 
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
45
 
HFILE_GLOB=
46
 
CFILE_GLOB=
47
 
 
48
 
# Header files to ignore when scanning.
49
 
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
50
 
IGNORE_HFILES= 
51
 
 
52
 
# Images to copy into HTML directory.
53
 
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
54
 
HTML_IMAGES= \
55
 
        $(srcdir)/images/*.png                                  \
56
 
        $(top_srcdir)/libgnomescanui/icons/rotate-90.png        \
57
 
        $(top_srcdir)/libgnomescanui/icons/rotate-270.png       \
58
 
        $(top_srcdir)/libgnomescanui/icons/scan.png
59
 
 
60
 
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
61
 
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
62
 
content_files= \
63
 
        version.xml     \
64
 
        gallery.xml
65
 
 
66
 
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
67
 
# These files must be listed here *and* in content_files
68
 
# e.g. expand_content_files=running.sgml
69
 
expand_content_files=
70
 
 
71
 
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
72
 
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
73
 
# signals and properties.
74
 
# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
75
 
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
76
 
INCLUDES= \
77
 
        -I$(top_srcdir)                 \
78
 
        -I$(top_srcdir)/libgnomescan    \
79
 
        -I$(top_srcdir)/libgnomescanui  \
80
 
        -I$(top_builddir)               \
81
 
        $(GNOMESCAN_CFLAGS)
82
 
 
83
 
GTKDOC_LIBS= \
84
 
        $(GNOMESCAN_LIBS)                                       \
85
 
        $(INTLLIBS)                                             \
86
 
        -lsane                                                  \
87
 
        -L$(top_builddir)/libgnomescan -lgnomescan              \
88
 
        -L$(top_builddir)/libgnomescanui -lgnomescanui
89
 
 
90
 
 
91
 
# This includes the standard gtk-doc make rules, copied by gtkdocize.
92
 
include $(top_srcdir)/gtk-doc.make
93
 
 
94
 
# Other files to distribute
95
 
# e.g. EXTRA_DIST += version.xml.in
96
 
EXTRA_DIST += \
97
 
        version.xml.in \
98
 
        gallery.xml
99
 
 
100
 
# gallery.xml: images/*.png Makefile
101
 
#       cd $(srcdir); \
102
 
#       echo "<para role=\"gallery\" align=\"center\">" > $@; \
103
 
#       for i in images/*.png ; do \
104
 
#       n=$${i/images\//}; n=$${n/.png/}; \
105
 
#       echo -e "<link linkend=\"$$n\"><para>$$n</para><inlinegraphic fileref=\"$$n.png\" format=\"PNG\" /></link>" >> $@; \
106
 
#       done; echo "</para>" >> $@; \
107
 
#       cd $${OLDPWD}
108
 
 
109
 
purge:
110
 
        rm -rf html xml *.stamp ;\
111
 
        rm -rf $(DOC_MODULE).{args,hierarchy,interfaces,prerequisites,signals} ;\
112
 
        rm -rf $(DOC_MODULE)-{decl*,sections,undocumented,unused,overrides}.txt