~ubuntu-branches/debian/jessie/xiphos/jessie

« back to all changes in this revision

Viewing changes to m4/gnome-doc-utils.m4

  • Committer: Bazaar Package Importer
  • Author(s): Dmitrijs Ledkovs
  • Date: 2010-03-22 18:15:54 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100322181554-qlqchymwhcw28c0c
* New upstream release:
  + Bugfix only
  + Compatible with xulrunner 1.9.2
  + Update translations

* Revert changes introduced in 3.1.2-1ubuntu1. Thank you Chris Coulson
  for temporary fix.
* debian/xiphos.1 - spelling mistake
* waf is now default buildsystem
* help is now licensed under GPL
* Bumped standards version no changes required
* Changed email to @ubuntu.com

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl Do not call GNOME_DOC_DEFINES directly.  It is split out from
2
 
dnl GNOME_DOC_INIT to allow gnome-doc-utils to bootstrap off itself.
3
 
AC_DEFUN([GNOME_DOC_DEFINES],
4
 
[
5
 
AC_ARG_WITH([help-dir],
6
 
  AC_HELP_STRING([--with-help-dir=DIR], [path to help docs]),,
7
 
  [with_help_dir='${datadir}/gnome/help'])
8
 
HELP_DIR="$with_help_dir"
9
 
AC_SUBST(HELP_DIR)
10
 
 
11
 
AC_ARG_WITH([omf-dir],
12
 
  AC_HELP_STRING([--with-omf-dir=DIR], [path to OMF files]),,
13
 
  [with_omf_dir='${datadir}/omf'])
14
 
OMF_DIR="$with_omf_dir"
15
 
AC_SUBST(OMF_DIR)
16
 
 
17
 
AC_ARG_WITH([help-formats],
18
 
  AC_HELP_STRING([--with-help-formats=FORMATS], [list of formats]),,
19
 
  [with_help_formats=''])
20
 
DOC_USER_FORMATS="$with_help_formats"
21
 
AC_SUBST(DOC_USER_FORMATS)
22
 
 
23
 
AC_ARG_ENABLE([scrollkeeper],
24
 
        [AC_HELP_STRING([--disable-scrollkeeper],
25
 
                        [do not make updates to the scrollkeeper database])],,
26
 
        enable_scrollkeeper=yes)
27
 
AM_CONDITIONAL([ENABLE_SK],[test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"])
28
 
 
29
 
dnl disable scrollkeeper automatically for distcheck
30
 
DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS"
31
 
AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
32
 
 
33
 
AM_CONDITIONAL([HAVE_GNOME_DOC_UTILS],[test "$gdu_cv_have_gdu" = "yes"])
34
 
])
35
 
 
36
 
# GNOME_DOC_INIT ([MINIMUM-VERSION],[ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
37
 
#
38
 
AC_DEFUN([GNOME_DOC_INIT],
39
 
[AC_REQUIRE([AC_PROG_LN_S])dnl
40
 
 
41
 
ifelse([$1],,[gdu_cv_version_required=0.3.2],[gdu_cv_version_required=$1])
42
 
 
43
 
PKG_CHECK_EXISTS([gnome-doc-utils >= $gdu_cv_version_required],
44
 
        [gdu_cv_have_gdu=yes],[gdu_cv_have_gdu=no])
45
 
 
46
 
if test "$gdu_cv_have_gdu" = "yes"; then
47
 
        ifelse([$2],,[:],[$2])
48
 
else
49
 
        ifelse([$3],,[AC_MSG_ERROR([gnome-doc-utils >= $gdu_cv_version_required not found])],[$3])
50
 
fi
51
 
 
52
 
GNOME_DOC_DEFINES
53
 
])