~vcs-imports/ekiga/git-trunk

« back to all changes in this revision

Viewing changes to help/omf.make

  • Committer: Damien Sandras
  • Author(s): Damien Sandras
  • Date: 2004-02-24 21:22:32 UTC
  • Revision ID: git-v1:f60b04e57d89bd829f97a3ce9a4867cf7c62db83
Added check for scrollkeeper. Incremented version to 1.00 ! Changed check


2004-02-24 Damien Sandras  <dsandras@seconix.com>

        * configure.in: Added check for scrollkeeper. Incremented version
        to 1.00 ! Changed check for OpenH323 and PWLib to work on latest
        stable versions.

        * help/omf.make, help/xmldocs.make: Added.

        * help/C/Makefile.am: Result of the move of *.make.

        * help/C/gnomemeeting.xml: More fixes, and more HIG compliances.

        * help/C/omf.make, help/C/xmldocs.make: Removed.

        * help/C/figures/audio_codecs.png, help/C/figures/call_d1.png,
        help/C/figures/config_d1.png, help/C/figures/config_d2.png,
        help/C/figures/config_d3.png, help/C/figures/config_d4.png,
        help/C/figures/config_d5.png, help/C/figures/config_d6.png,
        help/C/figures/config_d7.png, help/C/figures/config_d8.png,
        help/C/figures/config_d9.png, help/C/figures/stats.png: New
        screenshots with the Industrial theme and a drop-shadow.

        * lib/gtk_menu_extensions.c: Added support for GDK_F1 so that
        it is working without the CTRL Mask.

        * lib/gtk_menu_extensions.h: Accel is now a guint.

        * man/gnomemeeting.1: Updated version in manual.

        * src/config.cpp, src/druid.cpp: Fixed bug with welcome dialog
        and added support for version check > 0.99.0.

        * src/gnomemeeting.cpp: See above.

        * src/menu.cpp: Added GDK_F1 as accel for the help content.

        * src/pref_window.cpp: Use a dialog with no title.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
2
# No modifications of this Makefile should be necessary.
 
3
#
 
4
# This file contains the build instructions for installing OMF files.  It is
 
5
# generally called from the makefiles for particular formats of documentation.
 
6
#
 
7
# Note that you must configure your package with --localstatedir=/var/lib
 
8
# so that the scrollkeeper-update command below will update the database
 
9
# in the standard scrollkeeper directory.
 
10
#
 
11
# If it is impossible to configure with --localstatedir=/var/lib, then
 
12
# modify the definition of scrollkeeper_localstate_dir so that
 
13
# it points to the correct location. Note that you must still use 
 
14
# $(localstatedir) in this or when people build RPMs it will update
 
15
# the real database on their system instead of the one under RPM_BUILD_ROOT.
 
16
#
 
17
# Note: This make file is not incorporated into xmldocs.make because, in
 
18
#       general, there will be other documents install besides XML documents
 
19
#       and the makefiles for these formats should also include this file.
 
20
#
 
21
# About this file:
 
22
#       This file was taken from scrollkeeper_example2, a package illustrating
 
23
#       how to install documentation and OMF files for use with ScrollKeeper
 
24
#       0.3.x and 0.4.x.  For more information, see:
 
25
#               http://scrollkeeper.sourceforge.net/    
 
26
#       Version: 0.1.2 (last updated: March 20, 2002)
 
27
#
 
28
 
 
29
omf_dest_dir=$(datadir)/omf/@PACKAGE@
 
30
scrollkeeper_localstate_dir = $(localstatedir)/scrollkeeper
 
31
 
 
32
omf: omf_timestamp
 
33
 
 
34
omf_timestamp: $(omffile)
 
35
        -for file in $(omffile); do \
 
36
          scrollkeeper-preinstall $(docdir)/$(docname).xml $(srcdir)/$$file $$file.out; \
 
37
        done
 
38
        touch omf_timestamp
 
39
 
 
40
install-data-hook-omf:
 
41
        $(mkinstalldirs) $(DESTDIR)$(omf_dest_dir)
 
42
        for file in $(omffile); do \
 
43
                $(INSTALL_DATA) $$file.out $(DESTDIR)$(omf_dest_dir)/$$file; \
 
44
        done
 
45
        -scrollkeeper-update -p $(scrollkeeper_localstate_dir) -o $(DESTDIR)$(omf_dest_dir)
 
46
 
 
47
uninstall-local-omf:
 
48
        -for file in $(srcdir)/*.omf; do \
 
49
                basefile=`basename $$file`; \
 
50
                rm -f $(omf_dest_dir)/$$basefile; \
 
51
        done
 
52
        -rmdir $(omf_dest_dir)
 
53
        -scrollkeeper-update -p $(scrollkeeper_localstate_dir)