~ubuntu-branches/ubuntu/lucid/awn-extras-applets/lucid

« back to all changes in this revision

Viewing changes to m4/gconf.m4

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-03-30 20:26:40 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330202640-vza3bdnv9gc9bg5z
Tags: 0.4.0~rc1-0ubuntu1
* New upstream release (rc1) (LP: #551309)
 - Stack applet close on click (LP: #261520)
* debian/patches/
 - 03-remove-cairo-menu-pref.patch: From upstream (r1244 + r1245 + r1252),
   remove menu entry for cairo-menu preferences, it's not implemented
   (LP: #511254)
 - 04-tomboy-threading-free.patch: From upstream (r1246), remove threading to
   make the applet working. 
* debian/*.install: Update installation location of comics and digital 
  applets.
* debian/control: 
 - Move digital applet from python to C, and add proper Replaces.
 - Add Replaces for awn-applets-c-core to handle migration from 0.3.2.2.
   (LP: #524559)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl AM_GCONF_SOURCE_2
 
2
dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas
 
3
dnl  (i.e. pass to gconftool-2
 
4
dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where
 
5
dnl  you should install foo.schemas files
 
6
dnl
 
7
 
 
8
AC_DEFUN([AM_GCONF_SOURCE_2],
 
9
[
 
10
  if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
 
11
    GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
 
12
  else
 
13
    GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
 
14
  fi
 
15
 
 
16
  AC_ARG_WITH([gconf-source],
 
17
              AC_HELP_STRING([--with-gconf-source=sourceaddress],
 
18
                             [Config database for installing schema files.]),
 
19
              [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
 
20
 
 
21
  AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
 
22
  AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
 
23
 
 
24
  if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
 
25
    GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
 
26
  fi
 
27
 
 
28
  AC_ARG_WITH([gconf-schema-file-dir],
 
29
              AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
 
30
                             [Directory for installing schema files.]),
 
31
              [GCONF_SCHEMA_FILE_DIR="$withval"],)
 
32
 
 
33
  AC_SUBST(GCONF_SCHEMA_FILE_DIR)
 
34
  AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
 
35
 
 
36
  AC_ARG_ENABLE(schemas-install,
 
37
        AC_HELP_STRING([--disable-schemas-install],
 
38
                       [Disable the schemas installation]),
 
39
     [case ${enableval} in
 
40
       yes|no) ;;
 
41
       *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
 
42
      esac])
 
43
  AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
 
44
])