~ubuntu-branches/debian/experimental/brasero/experimental

« back to all changes in this revision

Viewing changes to m4/gtk-doc.m4

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Pedro Fragoso, Luca Bruno, Josselin Mouette, Emilio Pozuelo Monfort
  • Date: 2009-06-24 18:59:46 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624185946-iyxkgf3gjptir5y3
Tags: 2.26.2-1
[ Pedro Fragoso ]
* Add myself to Maintainer field
  - Thanks Ondřej Surý
* New upstream version (Closes: #528945)
  - Split package into brasero, libbrasero-media0 and libbrasero-dev
  - Add Replaces to libbrasero-media0
  - Bump libgtk to 2.14.0
  - Remove libnotify Build-dep
  - Add Build-dep libnautilus-extension-dev (>= 2.22.2)
    and install it.
  - Add Build-dep to libsm-dev
  - Add Build-dep on intltool
* Install omf files to prevent crash on Help
* Move gstreamer0.10-plugins-bad to Suggests, and add
  dvdauthor and vcdimager
* Recommends gvfs (Closes: #491827)
* Pass --disable-scrollkeeper in DEB_CONFIGURE_EXTRA_FLAGS
* debian/patches/007-fix-gnome-doc-utils-path.patch:
  - Removed, not needed anymore
* debian/patches/008-fix-volume-identifier-crash.patch:
  - Removed, merged upstream
* debian/patches/011_nautilus_menu_move.patch:
 - Move CD/DVD Creator Menu to Acessories, taken from Ubuntu

[ Luca Bruno ]
* debian/control.in:
  - Add Build-Depend gtk-doc-tools 1.9.
* debian/patches/006-fix-libdvdcss.patch:
  - Removed as applied upstream.

[ Josselin Mouette ]
* New upstream release.
* Update build-dependencies.
* Move the translations and data to a new brasero-common package.
* Rewrite the descriptions.
* Add -dev depends to the development package.
* Remove inappropriate recommends in the library package.
* Let’s not forget dvd+rw-tools so that we can write DVDs too.
* Rework dependencies accordingly.
* Put the nautilus extension in brasero.
* Conflict against nautilus-cd-burner to avoid having two burning 
  extensions.
* Include clean-la.mk and gnome-version.mk; build-depend on 
  gnome-pkg-tools 0.7.
* Don’t run dh_makeshlibs on brasero and libbrasero-plugins.
* 011_nautilus_menu_move.patch: add NoDisplay=true, this icon is 
  duplicating existing functionality (brasero icon in sound&video 
  menu, and nautilus autorun).
* Update list of copyright holders.

[ Emilio Pozuelo Monfort ]
* debian/copyright: updated.

[ Josselin Mouette ]
* copyright: improve indentation, and point to versioned LGPL.
* 090_relibtoolize.patch: add a relibtoolization patch to avoid the 
  rpath crap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl -*- mode: autoconf -*-
2
 
 
3
 
# serial 1
4
 
 
5
 
dnl Usage:
6
 
dnl   GTK_DOC_CHECK([minimum-gtk-doc-version])
7
 
AC_DEFUN([GTK_DOC_CHECK],
8
 
[
9
 
  AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
10
 
  AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
11
 
  dnl for overriding the documentation installation directory
12
 
  AC_ARG_WITH([html-dir],
13
 
    AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
14
 
    [with_html_dir='${datadir}/gtk-doc/html'])
15
 
  HTML_DIR="$with_html_dir"
16
 
  AC_SUBST([HTML_DIR])
17
 
 
18
 
  dnl enable/disable documentation building
19
 
  AC_ARG_ENABLE([gtk-doc],
20
 
    AS_HELP_STRING([--enable-gtk-doc],
21
 
                   [use gtk-doc to build documentation [[default=no]]]),,
22
 
    [enable_gtk_doc=no])
23
 
 
24
 
  if test x$enable_gtk_doc = xyes; then
25
 
    ifelse([$1],[],
26
 
      [PKG_CHECK_EXISTS([gtk-doc],,
27
 
                        AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))],
28
 
      [PKG_CHECK_EXISTS([gtk-doc >= $1],,
29
 
                        AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build gtk-doc]))])
30
 
  fi
31
 
 
32
 
  AC_MSG_CHECKING([whether to build gtk-doc documentation])
33
 
  AC_MSG_RESULT($enable_gtk_doc)
34
 
 
35
 
  AC_PATH_PROGS(GTKDOC_CHECK,gtkdoc-check,)
36
 
 
37
 
  AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
38
 
  AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])
39
 
])