aboutsummaryrefslogtreecommitdiffstats
path: root/doc/devel/Makefile.am
blob: f8597eccf1371202a89ebaebe41a6e0857aab321 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
## Process this file with automake to produce Makefile.in

SUBDIRS = calendar 

# The name of the module, e.g. 'glib'.
DOC_MODULE=evolution-devel-guide

# The top-level SGML file. Change it if you want.
DOC_MAIN_SGML_FILE=evolution-devel-guide.sgml

# The directory containing the source code. Relative to $(srcdir).
# gtk-doc will search all .c & .h files beneath here for inline comments
# documenting functions and macros.
#DOC_SOURCE_DIR=

# Extra options to supply to gtkdoc-scan.
#SCAN_OPTIONS=

# Extra options to supply to gtkdoc-mkdb.
#MKDB_OPTIONS=

# Extra options to supply to gtkdoc-fixref.
#FIXXREF_OPTIONS=

# Used for dependencies.
#HFILE_GLOB=
#CFILE_GLOB=

# Header files to ignore when scanning.
#IGNORE_HFILES=

# Images to copy into HTML directory.
HTML_IMAGES =


# Add your module's hand-written and auto-generated files here; these
# are used for dependency tracking.

local_entities =                    \
    calendar/alarm-generation.sgml          \
    calendar/architecture.sgml          \
    calendar/evolution-calendar.sgml        \
    calendar/public-reference.sgml          \
                            \
    calendar/cal-client/sgml/cal-client.sgml    \
                            \
    calendar/cal-util/sgml/cal-component.sgml   \
    calendar/cal-util/sgml/cal-recur.sgml       \
    calendar/cal-util/sgml/cal-util.sgml        \
    calendar/cal-util/sgml/timeutil.sgml

#   executive-summary/sgml/executive-summary-component.sgml \
#   executive-summary/sgml/executive-summary-component-factory.sgml \
#   executive-summary/sgml/executive-summary-component-factory-client.sgml  \
#   executive-summary/sgml/executive-summary-html-view.sgml

#   importer/sgml/evolution-importer.sgml       \
#   importer/sgml/evolution-importer-client.sgml

installed_content_files =       \
    fdl.sgml            \
    preface.sgml            \
    reference.sgml

# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
content_files =             \
    $(installed_content_files)  \
    $(local_entities)

# Other files to distribute.
extra_files =

# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
# contains GtkObjects/GObjects and you want to document signals and properties.
#GTKDOC_CFLAGS =
#GTKDOC_LIBS =
#
#GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
#GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)

# If you need to override some of the declarations, place them in this file
# and uncomment this line.
#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt

HTML_DIR = $(datadir)/gnome/html

###########################################################################
# Everything below here is generic and you shouldn't need to change it.
###########################################################################

TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)

EXTRA_DIST =                \
    $(extra_files)          \
    $(installed_content_files)  \
    $(HTML_IMAGES)          \
    $(DOC_MAIN_SGML_FILE)

#   $(DOC_MODULE).types      \
#   $(DOC_MODULE)-sections.txt      \
#   $(DOC_OVERRIDES)

DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
       $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp

#SCANOBJ_FILES =         \
#   $(DOC_MODULE).args      \
#   $(DOC_MODULE).hierarchy \
#   $(DOC_MODULE).signals

if ENABLE_GTK_DOC
all-local: html-build.stamp

#### html ####

html-build.stamp: $(DOC_MAIN_SGML_FILE) $(content_files) #sgml.stamp
    @echo '*** Building HTML ***'
    test -d $(srcdir)/html || mkdir $(srcdir)/html
    cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
    test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
    @echo '-- Fixing Crossreferences' 
    cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
    touch html-build.stamp
endif

##############

clean-local:
    rm -f *~ *.bak *-unused.txt $(DOC_STAMPS) # $(SCANOBJ_FILES)

maintainer-clean-local: clean
    cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt

install-data-local:
    $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
    (installfiles=`echo $(srcdir)/html/*.html`; \
    if test "$$installfiles" = '$(srcdir)/html/*.html'; \
    then echo '-- Nothing to install' ; \
    else \
      for i in $$installfiles; do \
        echo '-- Installing '$$i ; \
        $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
      done; \
    fi)

#     echo '-- Installing $(srcdir)/html/index.sgml' ; \
#     $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \

#
# Require gtk-doc when making dist
#
if ENABLE_GTK_DOC
dist-check-gtkdoc:
else
dist-check-gtkdoc:
    @echo "*** gtk-doc must be installed and enabled in order to make dist"
    @false
endif

dist-hook: dist-check-gtkdoc dist-hook-local
    mkdir $(distdir)/html
    files=`echo $(srcdir)/html/*.html` ; \
    test '$(srcdir)/html/*.html' = "$$files" \
        || cp $$files $(distdir)/html
    files=`echo $(srcdir)/html/*.css` ; \
    test '$(srcdir)/html/*.css' = "$$files" \
        || cp $$files $(distdir)/html
    images=$(HTML_IMAGES) ;        \
    for i in $$images ; do      \
      cp $(srcdir)/$$i $(distdir)/html ;  \
    done

#   mkdir $(distdir)/tmpl
#   mkdir $(distdir)/sgml
#   -cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
#   -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl

.PHONY : dist-hook-local
5837db1'>- fix path to html documentationflo2011-04-262-0/+12 * update to 4.8.2oliver2011-04-253-152/+182 * update to 4.8.1oliver2011-04-256-146/+95 * - Mark BROKEN: does not buildpav2011-04-251-0/+2 * update to 4.8.3oliver2011-04-213-80/+70 * - fix build on i386dinoex2011-04-211-1/+7 * Fix up CONFLICTS.cy2011-04-193-3/+3 * Repair pkg-plist to remove directories created by NLS option.cy2011-04-192-0/+20 * Pkg-plist fix when WITHOUT_NLS specified.cy2011-04-181-0/+15 * Pkg-plist fix when WITHOUT_NLS specified.cy2011-04-181-15/+15 * . Update to 2.2.11.glewis2011-04-182-4/+3 * Update 2.6.0 --> 2.6.1cy2011-04-182-3/+3 * Mark FVWM 2.4 deprecated. It is no longer supported by fvwm.org. We willcy2011-04-171-0/+2 * Update 2.6.0 --> 2.7.0. FVWM's 2.7 branch is the new development branch.cy2011-04-173-19/+3 * Update 2.4.20 --> 2.6.0. The 2.6 has gone GA.cy2011-04-178-436/+536 * Add fvwm24 (previously repocopieed fvwm2).cy2011-04-171-0/+1 * - Update MASTER_SITESdhn2011-04-171-5/+3 * - Update to 2.1tabthorpe2011-04-162-3/+3 * Update 2.5.31 --> 2.6.0cy2011-04-163-3/+19 * - Update to 201104dhn2011-04-135-19/+20 * - Update to 20110412culot2011-04-124-21/+33 * - Update MASTER_SITES and WWW: linemiwi2011-04-123-21/+7 * - Update to 1.8.0miwi2011-04-125-191/+3954 * Upgrade to version 1.40.olgeni2011-04-082-5/+4 * Bump PORTREVISION after previous changes. While Gtk2 support is not enableddanfe2011-04-041-1/+1 * - Fix package list when build with Gtk2 installed and detecteddanfe2011-04-042-25/+16 * Augment and improve description text.danfe2011-04-041-9/+21 * - Replace direct (via LIB_DEPENDS) libXft dependency with USE_XORG onecy2011-04-021-5/+5 * Augment port description using text from official site, but fix some typos.danfe2011-04-011-5/+14 * - Replace direct (via LIB_DEPENDS) libXft dependency with USE_XORG onedanfe2011-04-011-4/+6 * Augment port description.danfe2011-04-011-9/+20 * - Replace direct (via LIB_DEPENDS) libXft dependency with USE_XORG onedanfe2011-04-011-10/+6 * - Update MASTER_SITES and WWW: linemiwi2011-03-272-8/+10 * - Add LICENSEdhn2011-03-272-1/+14 * - Bump PORTREVISIONdhn2011-03-254-10/+60 * - Update MASTER_SITES and maintainer mail adressmiwi2011-03-241-2/+2 * - Update to 2.0tabthorpe2011-03-232-3/+3 * - Get Rid MD5 supportmiwi2011-03-20121-138/+1 * - Replace direct (via LIB_DEPENDS) libXft dependency with USE_XORG onedanfe2011-03-181-12/+11 * mcwm is a minimalistic floating window manager for the X Window System.miwi2011-03-175-0/+84 * Update to 0.4.5kmoore2011-03-163-5/+6 * Deprecate unmaintained ports from x11-wm where upstream disapear and/or where...bapt2011-03-116-0/+18 * new home found so no deprecation sorry about thatbapt2011-03-111-3/+0 * switch to the new sourceforge homebapt2011-03-112-3/+6 * update www and master_site to make it fetchable againbapt2011-03-112-4/+2 * - Try to fix buildpav2011-03-091-3/+20 * fix 100% CPU usage under some circumstancesoliver2011-03-081-0/+12 * fix 100% CPU usage under some circumstancesoliver2011-03-081-5/+4 * add archivers/squeeze as optional applicationoliver2011-03-071-0/+5 * - Fix build. [1]avilla2011-03-062-4/+1 * bump PORTREVISION because of changed dependencies in my previous commitoliver2011-03-051-0/+1 * libexo is required in any caseoliver2011-03-051-8/+5 * update the meta port to 4.8 as welloliver2011-03-051-1/+1 * - Update to 1.3.1beat2011-03-042-3/+3 * Welcome XFCE 4.8 to the portstree!oliver2011-03-0313-671/+674 * - BROKEN fails to buildmiwi2011-02-281-0/+2 * - Update to 0.9.28miwi2011-02-274-6/+6 * - Reassign ports to heaptabthorpe2011-02-271-1/+1 * - Please welcome Xorg 7.5.1miwi2011-02-263-6/+3 * - Fix WWW in pkg-descrdhn2011-02-232-2/+1 * - Update to 1.3.0beat2011-02-206-358/+6 * - Update to snapshot 1.0.7.003gahr2011-02-162-4/+4 * Fix several 64bit-Bugs, which according to the submitterarved2011-01-282-1/+120 * Update to 3.4.9garga2011-01-272-3/+3 * - Chase libmpd shlib updatemiwi2011-01-261-1/+2 * - Update to 3.e-bf2dhn2011-01-233-4/+13 * - Drop ports I don't use anymore and can't fix.sem2011-01-211-1/+1 * Pass correct flags via CFLAGS instead of MAKE_ARGSnovel2011-01-142-2/+1 * - Update to 0.21pl2dhn2011-01-113-17/+13 * - Update to 0.9.27dhn2011-01-114-12/+10 * Update to 1.3.4arved2011-01-102-3/+4 * Remove expired ports:garga2011-01-0313-203/+0 * Garbage collect unmaintained expired ports:rene2011-01-035-72/+0 * - DISTNAME= ${PORTNAME}-${PORTVERSION} is the default and not needed.pgollucci2010-12-3045-45/+0 * Update to 1.3.3ehaupt2010-12-27