gnome-lirc-properties r71 - in trunk: . data help help/es help/sv



Author: hadess
Date: Wed Oct 22 14:40:27 2008
New Revision: 71
URL: http://svn.gnome.org/viewvc/gnome-lirc-properties?rev=71&view=rev

Log:
2008-10-22  Bastien Nocera  <hadess hadess net>

	* NEWS: upd
	* configure.ac: 0.3.0
	* autogen.sh: Add hacks to make configure and distcheck easier on
	Fedora systems (the defaults are still good for Debian/Ubuntu systems)

	* Makefile.am:
	* data/Makefile.am:
	* help/Makefile.am:
	* help/es/legal.xml:
	* help/sv/legal.xml: Distcheck fixes



Added:
   trunk/help/es/legal.xml
   trunk/help/sv/legal.xml
Modified:
   trunk/ChangeLog
   trunk/Makefile.am
   trunk/NEWS
   trunk/autogen.sh
   trunk/configure.ac
   trunk/data/Makefile.am
   trunk/help/Makefile.am

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am	(original)
+++ trunk/Makefile.am	Wed Oct 22 14:40:27 2008
@@ -8,9 +8,6 @@
 	bin/todo-list \
 	data/overrides.conf \
 	gnome-doc-utils.make \
-	intltool-extract.in \
-	intltool-merge.in \
-	intltool-update.in \
 	man/gnome-lirc-properties.1 \
 	patches/0001-Use-new-instead-of-conf-as-filename-suffix.patch \
 	patches/0002-Add-resume-switch-to-irrecord.patch \
@@ -23,7 +20,5 @@
 	intltool-update
 
 DISTCHECK_CONFIGURE_FLAGS = \
-	--disable-scrollkeeper \
-	--with-lirc-confdir=/etc/lirc \
-	--with-remotes-database=/usr/share/lirc/remotes
+	--disable-scrollkeeper
 

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Wed Oct 22 14:40:27 2008
@@ -1,3 +1,20 @@
+0.3.0:
+
+* Add a program to generate updated "Linux Input Layer" remote
+  configuration, and update the configuration we ship
+  Bug #555802
+* Add support for the Apple Mac Mini IR Receivers, Windows Media Center
+  -compatible receivers, as well as the CommandIR Multi-IR Transceiver,
+  the SoundGraph iMon Knob, and PS3 BD Remote
+  Bugs #556599, #555802, #556643
+* Fix GTK+ warning on startup with newer GTK's
+  Bug #556552
+* Make sure we don't try to set up Logitech Mini-Receivers, or Dell USB
+  keyboard hubs as remotes
+  Bugs #541104 and #557086
+* Fix possible errors due to PolicyKit usage
+  Bug #556745
+
 0.2.8:
 
 * Require lirc 0.8.4.

Modified: trunk/autogen.sh
==============================================================================
--- trunk/autogen.sh	(original)
+++ trunk/autogen.sh	Wed Oct 22 14:40:27 2008
@@ -16,5 +16,9 @@
  exit 1
 fi
 
-. gnome-autogen.sh
+if [ -f /etc/fedora-release ] ; then
+	. gnome-autogen.sh --disable-conf-check --with-lirc-confdir=/etc/ --with-remotes-database=/usr/share/lirc-remotes/ "$@"
+else
+	. gnome-autogen.sh "$@"
+fi
 

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Wed Oct 22 14:40:27 2008
@@ -1,4 +1,4 @@
-AC_INIT([gnome-lirc-properties], [0.2.8],
+AC_INIT([gnome-lirc-properties], [0.3.0],
         [https://code.fluendo.com/remotecontrol/trac/])
 
 # tar-ustar asks it to use a sensible tar format that can handle long filenames
@@ -85,15 +85,23 @@
   test "$value" != "$1" && expand_vars "$value" || echo "$value"
 }
 
+if test -f /etc/fedora-release ; then
+	lirc_confdir="/etc"
+	remotes_database="/usr/share/lirc-remotes"
+else
+	lirc_confdir="$sysconfdir/lirc"
+	remotes_database="$datadir/lirc/remotes"
+fi
+
 AC_ARG_WITH([lirc_confdir],
             AS_HELP_STRING([--with-lirc-confdir],
                            [Configuration folder of LIRC, e.g. $sysconfdir/lirc]),
-            [], [with_lirc_confdir=`expand_vars "$sysconfdir/lirc"`])
+            [], [with_lirc_confdir=`expand_vars "$lirc_confdir"`])
 
 AC_ARG_WITH([remotes_database],
             AS_HELP_STRING([--with-remotes-database],
                            [Path of the system's LIRC remote database, e.g. $datadir/lirc/remotes]),
-            [], [with_remotes_database=`expand_vars "$datadir/lirc/remotes"`])
+            [], [with_remotes_database=`expand_vars "$remotes_database"`])
 
 AC_SUBST([with_lirc_confdir])
 AC_SUBST([with_remotes_database])
@@ -110,7 +118,9 @@
       AC_MSG_RESULT([$with_lirc_confdir])
     else
       AC_MSG_RESULT([no])
-      AC_MSG_ERROR([Cannot find lircd.conf in $with_lirc_confdir.])
+      if test ! -f /etc/fedora-release ; then
+        AC_MSG_ERROR([Cannot find lircd.conf in $with_lirc_confdir.])
+      fi
     fi
   else
     AC_MSG_RESULT([$with_lirc_confdir])

Modified: trunk/data/Makefile.am
==============================================================================
--- trunk/data/Makefile.am	(original)
+++ trunk/data/Makefile.am	Wed Oct 22 14:40:27 2008
@@ -45,7 +45,8 @@
 	$(desktop_in_files) \
 	$(policykitpolicy_in_files) \
 	$(resources_DATA) \
-	$(service_in_files)
+	$(service_in_files) \
+	$(fdi_DATA)
 
 DISTCLEANFILES = \
 	$(desktop_DATA) \

Modified: trunk/help/Makefile.am
==============================================================================
--- trunk/help/Makefile.am	(original)
+++ trunk/help/Makefile.am	Wed Oct 22 14:40:27 2008
@@ -14,4 +14,6 @@
 	figures/custom-remote-basics.png \
 	figures/custom-remote-keys.png
 
+EXTRA_DIST = es/legal.xml sv/legal.xml
+
 DOC_LINGUAS = es sv

Added: trunk/help/es/legal.xml
==============================================================================
--- (empty file)
+++ trunk/help/es/legal.xml	Wed Oct 22 14:40:27 2008
@@ -0,0 +1,72 @@
+   <legalnotice id="legalnotice">
+         <para>
+           Permission is granted to copy, distribute and/or modify this
+           document under the terms of the GNU Free Documentation
+           License (GFDL), Version 1.1 or any later version published
+           by the Free Software Foundation with no Invariant Sections,
+           no Front-Cover Texts, and no Back-Cover Texts.  You can find
+           a copy of the GFDL at this <ulink type="help"
+           url="ghelp:fdl">link</ulink> or in the file COPYING-DOCS
+           distributed with this manual.
+          </para>
+          <para> This manual is part of a collection of GNOME manuals
+           distributed under the GFDL.  If you want to distribute this
+           manual separately from the collection, you can do so by
+           adding a copy of the license to the manual, as described in
+           section 6 of the license.
+         </para>
+
+         <para>
+           Many of the names used by companies to distinguish their
+           products and services are claimed as trademarks. Where those
+           names appear in any GNOME documentation, and the members of
+           the GNOME Documentation Project are made aware of those
+           trademarks, then the names are in capital letters or initial
+           capital letters.
+         </para>
+
+         <para>
+           DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+           UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+           WITH THE FURTHER UNDERSTANDING THAT:
+
+           <orderedlist>
+                 <listitem>
+                   <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                     WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                     IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                     THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                     DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                     A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                     RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                     OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                     DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                     MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                     YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                     CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                     SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                     OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                     LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                     VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                     EXCEPT UNDER THIS DISCLAIMER; AND
+                     UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                     THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                     CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                     INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                     DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                     OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                     PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                     DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                     CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                     INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                     OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                     MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                     LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                     DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                     EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                     THE POSSIBILITY OF SUCH DAMAGES.
+                   </para>
+                 </listitem>
+           </orderedlist>
+         </para>
+   </legalnotice>

Added: trunk/help/sv/legal.xml
==============================================================================
--- (empty file)
+++ trunk/help/sv/legal.xml	Wed Oct 22 14:40:27 2008
@@ -0,0 +1,72 @@
+   <legalnotice id="legalnotice">
+         <para>
+           Permission is granted to copy, distribute and/or modify this
+           document under the terms of the GNU Free Documentation
+           License (GFDL), Version 1.1 or any later version published
+           by the Free Software Foundation with no Invariant Sections,
+           no Front-Cover Texts, and no Back-Cover Texts.  You can find
+           a copy of the GFDL at this <ulink type="help"
+           url="ghelp:fdl">link</ulink> or in the file COPYING-DOCS
+           distributed with this manual.
+          </para>
+          <para> This manual is part of a collection of GNOME manuals
+           distributed under the GFDL.  If you want to distribute this
+           manual separately from the collection, you can do so by
+           adding a copy of the license to the manual, as described in
+           section 6 of the license.
+         </para>
+
+         <para>
+           Many of the names used by companies to distinguish their
+           products and services are claimed as trademarks. Where those
+           names appear in any GNOME documentation, and the members of
+           the GNOME Documentation Project are made aware of those
+           trademarks, then the names are in capital letters or initial
+           capital letters.
+         </para>
+
+         <para>
+           DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+           UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+           WITH THE FURTHER UNDERSTANDING THAT:
+
+           <orderedlist>
+                 <listitem>
+                   <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                     WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                     IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                     THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                     DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                     A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                     RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                     OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                     DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                     MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                     YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                     CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                     SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                     OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                     LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                     VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                     EXCEPT UNDER THIS DISCLAIMER; AND
+                     UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                     THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                     CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                     INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                     DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                     OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                     PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                     DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                     CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                     INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                     OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                     MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                     LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                     DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                     EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                     THE POSSIBILITY OF SUCH DAMAGES.
+                   </para>
+                 </listitem>
+           </orderedlist>
+         </para>
+   </legalnotice>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]