~paulbrianstewart/ubuntu/oneiric/alarm-clock-applet/830806-Punctuation-Correction

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin, Chow Loong Jin, Peter Pentchev
  • Date: 2011-03-29 00:25:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110329002540-73r2b2w3qss8wont
Tags: 0.3.2-1
[ Chow Loong Jin ]
* [48e1cb8] New upstream release:
  + New features:
    - Add support for application indicators
    - Countdown label for application indicator
    - New status icon indicating triggered alarms
  + Bugs fixed:
    - Add countdown label (for application indicator) (LP: #565302)
    - Create ~/.config/autostart if it doesn't exist (LP: #610632)
    - Add support for libnotify 0.7 (LP: #671962)
    - Properly stop triggered alarms that are not playing sound (LP: #682999)
    - Add support for application indicators (LP: #704956)
    - Clicking on status icon should bring up list instead of snoozing
      (LP: #706832)
  + Translation updates:
    - ar, courtesy of Ahmed Mohammed
    - ast, courtesy of Xuacu Saturio <xuacusk8@gmail.com>
    - be, courtesy of Mikola Tsekhan <mail@tsekhan.com>
    - ca, courtesy of I. De Marchi
    - cs, courtesy of Oliwer <linuch@centrum.cz>
    - de, courtesy of Christoph Wickert
    - es, courtesy of Fitoschido <fitoschido@gmail.com>
    - et, courtesy of Tarmo Ilves <tarmo.ilves.001@mail.ee>
    - fi, courtesy of Jiri Grönroos
    - fo, courtesy of Gunleif Joensen
    - fr, courtesy of Nicolas Delvaux
    - gl, courtesy of Miguel Anxo Bouzada <mbouzada@gmail.com>
    - he, courtesy of Yaron <sh.yaron@gmail.com>
    - hu, courtesy of Papp Bence <papp.bence89@gmail.com>
    - id, courtesy of Arief Setiadi Wibowo <q_thrynx@yahoo.com>
    - ja, courtesy of jugger Yamamoto
    - ka, courtesy of Giorgi Maghlakelidze <acidlabz@gmail.com>
    - la, courtesy of nivek1385 <nivek1385@yeltrahnivek.com>
    - nb, courtesy of Johannes H. Jensen <joh@pseudoberries.com>
    - nl, courtesy of Rachid
    - pl, courtesy of XeonBloomfield
    - pt_BR, courtesy of André Gondim <andregondim@ubuntu.com>
    - ru, courtesy of Сергій Матрунчик (SkyMan)
    - tr, courtesy of Burak Ilgıcıoğlu
    - uk, courtesy of Сергій Матрунчик (SkyMan)
    - zh_CN, courtesy of Lele Long <schemacs@gmail.com>
    - zh_TW, courtesy of Cheng-Chia Tseng <pswo10680@gmail.com>
* [002292e] Drop README.source since we use debsrc3.0
* [8dbb35e] No-change Standards-Version (3.8.4 → 3.9.1)
* [45f456f] Drop override_dh_auto_install (no longer needed)

[ Peter Pentchev ]
* [e8eaaa5] Fix a typo in the get-orig-source target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
m4_define([alarm_clock_major_version], [0])
6
6
m4_define([alarm_clock_minor_version], [3])
7
 
m4_define([alarm_clock_micro_version], [1])
 
7
m4_define([alarm_clock_micro_version], [2])
8
8
 
9
9
m4_define([alarm_clock_version],
10
10
          [alarm_clock_major_version.alarm_clock_minor_version.alarm_clock_micro_version])
11
11
          
12
12
AC_INIT([alarm-clock], [alarm_clock_version],
13
 
                [Johannes H. Jensen <joh@pseudoberries.com>],
 
13
                [https://bugs.launchpad.net/alarm-clock],
14
14
                [alarm-clock-applet])
15
15
                
16
16
AC_CONFIG_SRCDIR([src])
71
71
 
72
72
AM_GCONF_SOURCE_2
73
73
 
 
74
#
 
75
# Check for libnotify 0.7
 
76
#
 
77
PKG_CHECK_MODULES(LIBNOTIFY_0_7, libnotify >= 0.7, have_libnotify_0_7=yes, have_libnotify_0_7=no)
 
78
 
 
79
if test x$have_libnotify_0_7 = xyes ; then
 
80
    AC_DEFINE(HAVE_LIBNOTIFY_0_7, 1, [Have libnotify 0.7])
 
81
fi
 
82
AM_CONDITIONAL(HAVE_LIBNOTIFY_0_7, test x$have_libnotify_0_7 = xyes)
 
83
 
 
84
#
 
85
# Check for AppIndicator (optional)
 
86
#
 
87
APPINDICATOR_REQUIRED=0.0.7
 
88
 
 
89
AC_ARG_ENABLE(appindicator,
 
90
              AS_HELP_STRING([--enable-appindicator[=@<:@no/auto/yes@:>@]],[Build support for application indicators ]),
 
91
              [enable_appindicator=$enableval],
 
92
              [enable_appindicator="auto"])
 
93
 
 
94
if test x$enable_appindicator = xauto ; then
 
95
    PKG_CHECK_EXISTS([appindicator-0.1 >= $APPINDICATOR_REQUIRED],
 
96
                     enable_appindicator="yes",
 
97
                     enable_appindicator="no")
 
98
fi
 
99
 
 
100
if test x"$enable_appindicator" = xyes ; then
 
101
    PKG_CHECK_EXISTS([appindicator-0.1],,
 
102
                     AC_MSG_ERROR([appindicator-0.1 is not installed]))
 
103
    PKG_CHECK_MODULES(APP_INDICATOR,
 
104
                    appindicator-0.1 >= $APPINDICATOR_REQUIRED)
 
105
#    AC_SUBST(APP_INDICATOR_CFLAGS)
 
106
#    AC_SUBST(APP_INDICATOR_LIBS)
 
107
    AC_DEFINE(HAVE_APP_INDICATOR, 1, [Have AppIndicator])
 
108
fi
 
109
AM_CONDITIONAL(HAVE_APP_INDICATOR, test x"$enable_appindicator" = xyes)
 
110
 
74
111
# ********************
75
112
# Internationalisation
76
113
# ********************
116
153
Configure summary:
117
154
    prefix:                 ${prefix}
118
155
    source code location:   ${srcdir}
 
156
    application indicators: ${enable_appindicator}
119
157
 
120
158
*************************************************
121
159
"