(Old svn revision: 777)
This commit is contained in:
17
ChangeLog
17
ChangeLog
@@ -1,3 +1,14 @@
|
|||||||
*********************************************
|
2005-07-05 19:38 Johannes
|
||||||
************ xfce4-taskmanager ************
|
|
||||||
*********************************************
|
* added finnish translation
|
||||||
|
* fixed a memory leak in functions.c
|
||||||
|
|
||||||
|
2005-06-30 23:47 Johannes
|
||||||
|
|
||||||
|
* bugfix in the sorting function
|
||||||
|
* name of about-dialog changed
|
||||||
|
* scrollbars only showed when needed
|
||||||
|
|
||||||
|
2005-06-30 22:09 Johannes
|
||||||
|
|
||||||
|
* started completly new ;)
|
||||||
|
|||||||
23
Makefile.am
23
Makefile.am
@@ -1 +1,22 @@
|
|||||||
SUBDIRS = src
|
EXTRA_DIST = \
|
||||||
|
AUTHORS \
|
||||||
|
COPYING \
|
||||||
|
ChangeLog \
|
||||||
|
INSTALL \
|
||||||
|
NEWS \
|
||||||
|
README \
|
||||||
|
TODO \
|
||||||
|
intltool-extract.in \
|
||||||
|
intltool-merge.in \
|
||||||
|
intltool-update.in
|
||||||
|
|
||||||
|
DISTCLEANFILES = \
|
||||||
|
intltool-extract \
|
||||||
|
intltool-merge \
|
||||||
|
intltool-update
|
||||||
|
|
||||||
|
SUBDIRS = po src
|
||||||
|
DIST_SUBDIRS = src po
|
||||||
|
|
||||||
|
dist-bz2: dist
|
||||||
|
zcat $(PACKAGE)-$(VERSION).tar.gz | bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
|
||||||
|
|||||||
36
NEWS
36
NEWS
@@ -1,33 +1,3 @@
|
|||||||
*********************************************
|
20050630:
|
||||||
************ xfce4-taskmanager ************
|
---------
|
||||||
*********************************************
|
* New version of xfce4-taskmanager (0.3.0).
|
||||||
|
|
||||||
Version 0.2.0 (01 Feb 2005):
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* completly rewrited
|
|
||||||
* few bugfixes
|
|
||||||
* about dialog
|
|
||||||
|
|
||||||
|
|
||||||
Version 0.1.0 (23 Jan 2005):
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Self Refresh
|
|
||||||
|
|
||||||
|
|
||||||
Version 0.0.3 (19 Jan 2005):
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* get tasks without 'ps'
|
|
||||||
|
|
||||||
|
|
||||||
Version 0.0.1 (19 Jan 2005):
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Lists up all tasks of the running System
|
|
||||||
* Provides sending signals to tasks:
|
|
||||||
- STOP
|
|
||||||
- CONT
|
|
||||||
- TERM
|
|
||||||
- KILL
|
|
||||||
|
|||||||
7
README
7
README
@@ -12,8 +12,8 @@ see if there is a newer version available before reporting bugs.
|
|||||||
|
|
||||||
** Requirements **
|
** Requirements **
|
||||||
|
|
||||||
xfce4-taskmanager needs the commandlinetool 'ps' and Xfce 4's GUI library
|
xfce4-taskmanager needs the Xfce 4's GUI library libxfcegui4.
|
||||||
libxfcegui4. Xfce's core libraries can be obtained from http://xfce.org/.
|
Xfce's core libraries can be obtained from http://xfce.org/.
|
||||||
|
|
||||||
** Building **
|
** Building **
|
||||||
|
|
||||||
@@ -21,9 +21,6 @@ libxfcegui4. Xfce's core libraries can be obtained from http://xfce.org/.
|
|||||||
make
|
make
|
||||||
make install (as root)
|
make install (as root)
|
||||||
|
|
||||||
If 'configure' fails, please run 'autogen.sh' or send me a mail with the exactly
|
|
||||||
errors :)
|
|
||||||
|
|
||||||
** Usage **
|
** Usage **
|
||||||
|
|
||||||
The GUI can be started by running 'xfce4-taskmanager'.
|
The GUI can be started by running 'xfce4-taskmanager'.
|
||||||
|
|||||||
7794
aclocal.m4
vendored
7794
aclocal.m4
vendored
File diff suppressed because it is too large
Load Diff
54
autogen.sh
54
autogen.sh
@@ -1,47 +1,23 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# $Id: autogen.sh,v 1.1 2005/01/26 22:28:25 nebulon Exp $
|
|
||||||
#
|
#
|
||||||
# Copyright (c) 2002 Daniel Elstner <daniel.elstner@gmx.net>
|
# $Id$
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# Copyright (c) 2002-2005
|
||||||
# it under the terms of the GNU General Public License VERSION 2 as
|
# The Xfce development team. All rights reserved.
|
||||||
# published by the Free Software Foundation. You are not allowed to
|
|
||||||
# use any other version of the license; unless you got the explicit
|
|
||||||
# permission from the author to do so.
|
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
|
|
||||||
|
|
||||||
#dir=`echo "$0" | sed 's,[^/]*$,,'`
|
|
||||||
#test "x${dir}" = "x" && dir='.'
|
|
||||||
|
|
||||||
#if test "x`cd "${dir}" 2>/dev/null && pwd`" != "x`pwd`"
|
|
||||||
#then
|
|
||||||
# echo "This script must be executed directly from the source directory."
|
|
||||||
# exit 1
|
|
||||||
#fi
|
|
||||||
|
|
||||||
#rm -f config.cache acconfig.h
|
|
||||||
|
|
||||||
#echo "- libtoolize." && \
|
|
||||||
#libtoolize --force && \
|
|
||||||
echo "- aclocal." && \
|
|
||||||
aclocal && \
|
|
||||||
echo "- autoconf." && \
|
|
||||||
autoconf && \
|
|
||||||
#echo "- autoheader." && \
|
|
||||||
#autoheader && \
|
|
||||||
echo "- automake." && \
|
|
||||||
automake --add-missing --gnu && \
|
|
||||||
echo && \
|
|
||||||
|
|
||||||
|
(type xdt-autogen) >/dev/null 2>&1 || {
|
||||||
|
cat >&2 <<EOF
|
||||||
|
autogen.sh: You don't seem to have the Xfce development tools installed on
|
||||||
|
your system, which are required to build this software.
|
||||||
|
Please install the xfce4-dev-tools package first, it is available
|
||||||
|
from http://www.xfce.org/.
|
||||||
|
EOF
|
||||||
exit 1
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
exec xdt-autogen $@
|
||||||
|
|
||||||
|
# vi:set ts=2 sw=2 et ai:
|
||||||
|
|||||||
1217
config.log
1217
config.log
File diff suppressed because it is too large
Load Diff
421
config.status
421
config.status
@@ -259,7 +259,7 @@ _ASBOX
|
|||||||
} >&5
|
} >&5
|
||||||
cat >&5 <<_CSEOF
|
cat >&5 <<_CSEOF
|
||||||
|
|
||||||
This file was extended by $as_me, which was
|
This file was extended by xfce4-taskmanager $as_me 0.3.2, which was
|
||||||
generated by GNU Autoconf 2.59. Invocation command line was
|
generated by GNU Autoconf 2.59. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -271,8 +271,9 @@ generated by GNU Autoconf 2.59. Invocation command line was
|
|||||||
_CSEOF
|
_CSEOF
|
||||||
echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
|
echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
|
||||||
echo >&5
|
echo >&5
|
||||||
config_files=" Makefile src/Makefile"
|
config_files=" Makefile src/Makefile po/Makefile.in"
|
||||||
config_commands=" depfiles"
|
config_headers=" config.h"
|
||||||
|
config_commands=" depfiles intltool default-1"
|
||||||
|
|
||||||
ac_cs_usage="\
|
ac_cs_usage="\
|
||||||
\`$as_me' instantiates files from templates according to the
|
\`$as_me' instantiates files from templates according to the
|
||||||
@@ -287,18 +288,23 @@ Usage: $0 [OPTIONS] [FILE]...
|
|||||||
--recheck update $as_me by reconfiguring in the same conditions
|
--recheck update $as_me by reconfiguring in the same conditions
|
||||||
--file=FILE[:TEMPLATE]
|
--file=FILE[:TEMPLATE]
|
||||||
instantiate the configuration file FILE
|
instantiate the configuration file FILE
|
||||||
|
--header=FILE[:TEMPLATE]
|
||||||
|
instantiate the configuration header FILE
|
||||||
|
|
||||||
Configuration files:
|
Configuration files:
|
||||||
$config_files
|
$config_files
|
||||||
|
|
||||||
|
Configuration headers:
|
||||||
|
$config_headers
|
||||||
|
|
||||||
Configuration commands:
|
Configuration commands:
|
||||||
$config_commands
|
$config_commands
|
||||||
|
|
||||||
Report bugs to <bug-autoconf@gnu.org>."
|
Report bugs to <bug-autoconf@gnu.org>."
|
||||||
ac_cs_version="\
|
ac_cs_version="\
|
||||||
config.status
|
xfce4-taskmanager config.status 0.3.2
|
||||||
configured by ./configure, generated by GNU Autoconf 2.59,
|
configured by ./configure, generated by GNU Autoconf 2.59,
|
||||||
with options \"\"
|
with options \"'--prefix=/opt/lunar/xfce4/'\"
|
||||||
|
|
||||||
Copyright (C) 2003 Free Software Foundation, Inc.
|
Copyright (C) 2003 Free Software Foundation, Inc.
|
||||||
This config.status script is free software; the Free Software Foundation
|
This config.status script is free software; the Free Software Foundation
|
||||||
@@ -377,8 +383,8 @@ if $ac_cs_silent; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if $ac_cs_recheck; then
|
if $ac_cs_recheck; then
|
||||||
echo "running /bin/sh ./configure " $ac_configure_extra_args " --no-create --no-recursion" >&6
|
echo "running /bin/sh ./configure " '--prefix=/opt/lunar/xfce4/' $ac_configure_extra_args " --no-create --no-recursion" >&6
|
||||||
exec /bin/sh ./configure $ac_configure_extra_args --no-create --no-recursion
|
exec /bin/sh ./configure '--prefix=/opt/lunar/xfce4/' $ac_configure_extra_args --no-create --no-recursion
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -386,6 +392,11 @@ fi
|
|||||||
#
|
#
|
||||||
|
|
||||||
AMDEP_TRUE="" ac_aux_dir="."
|
AMDEP_TRUE="" ac_aux_dir="."
|
||||||
|
INTLTOOL_PERL='/usr/bin/perl' ac_aux_dir=.
|
||||||
|
INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract' ICONV='/usr/bin/iconv'
|
||||||
|
MSGFMT='/usr/bin/msgfmt' MSGMERGE='/usr/bin/msgmerge'
|
||||||
|
XGETTEXT='/usr/bin/xgettext'
|
||||||
|
|
||||||
|
|
||||||
for ac_config_target in $ac_config_targets
|
for ac_config_target in $ac_config_targets
|
||||||
do
|
do
|
||||||
@@ -393,7 +404,11 @@ do
|
|||||||
# Handling of arguments.
|
# Handling of arguments.
|
||||||
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||||||
"src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
|
"src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
|
||||||
|
"po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
|
||||||
"depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
"depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
||||||
|
"intltool" ) CONFIG_COMMANDS="$CONFIG_COMMANDS intltool" ;;
|
||||||
|
"default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
|
||||||
|
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
||||||
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
||||||
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
||||||
{ (exit 1); exit 1; }; };;
|
{ (exit 1); exit 1; }; };;
|
||||||
@@ -406,6 +421,7 @@ done
|
|||||||
# bizarre bug on SunOS 4.1.3.
|
# bizarre bug on SunOS 4.1.3.
|
||||||
if $ac_need_defaults; then
|
if $ac_need_defaults; then
|
||||||
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
||||||
|
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
|
||||||
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
|
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -447,13 +463,13 @@ if test -n "$CONFIG_FILES"; then
|
|||||||
s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF
|
s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF
|
||||||
s,@SHELL@,/bin/sh,;t t
|
s,@SHELL@,/bin/sh,;t t
|
||||||
s,@PATH_SEPARATOR@,:,;t t
|
s,@PATH_SEPARATOR@,:,;t t
|
||||||
s,@PACKAGE_NAME@,,;t t
|
s,@PACKAGE_NAME@,xfce4-taskmanager,;t t
|
||||||
s,@PACKAGE_TARNAME@,,;t t
|
s,@PACKAGE_TARNAME@,xfce4-taskmanager,;t t
|
||||||
s,@PACKAGE_VERSION@,,;t t
|
s,@PACKAGE_VERSION@,0.3.2,;t t
|
||||||
s,@PACKAGE_STRING@,,;t t
|
s,@PACKAGE_STRING@,xfce4-taskmanager 0.3.2,;t t
|
||||||
s,@PACKAGE_BUGREPORT@,,;t t
|
s,@PACKAGE_BUGREPORT@,xfce4-taskmanger@nebulon.de,;t t
|
||||||
s,@exec_prefix@,${prefix},;t t
|
s,@exec_prefix@,${prefix},;t t
|
||||||
s,@prefix@,/usr/local,;t t
|
s,@prefix@,/opt/lunar/xfce4/,;t t
|
||||||
s,@program_transform_name@,s,x,x,,;t t
|
s,@program_transform_name@,s,x,x,,;t t
|
||||||
s,@bindir@,${exec_prefix}/bin,;t t
|
s,@bindir@,${exec_prefix}/bin,;t t
|
||||||
s,@sbindir@,${exec_prefix}/sbin,;t t
|
s,@sbindir@,${exec_prefix}/sbin,;t t
|
||||||
@@ -470,7 +486,7 @@ s,@mandir@,${prefix}/man,;t t
|
|||||||
s,@build_alias@,,;t t
|
s,@build_alias@,,;t t
|
||||||
s,@host_alias@,,;t t
|
s,@host_alias@,,;t t
|
||||||
s,@target_alias@,,;t t
|
s,@target_alias@,,;t t
|
||||||
s,@DEFS@,-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"xfce4-taskmanager\" -DVERSION=\"0.1.0\" ,;t t
|
s,@DEFS@,-DHAVE_CONFIG_H,;t t
|
||||||
s,@ECHO_C@,,;t t
|
s,@ECHO_C@,,;t t
|
||||||
s,@ECHO_N@,-n,;t t
|
s,@ECHO_N@,-n,;t t
|
||||||
s,@ECHO_T@,,;t t
|
s,@ECHO_T@,,;t t
|
||||||
@@ -480,26 +496,29 @@ s,@INSTALL_SCRIPT@,${INSTALL},;t t
|
|||||||
s,@INSTALL_DATA@,${INSTALL} -m 644,;t t
|
s,@INSTALL_DATA@,${INSTALL} -m 644,;t t
|
||||||
s,@CYGPATH_W@,echo,;t t
|
s,@CYGPATH_W@,echo,;t t
|
||||||
s,@PACKAGE@,xfce4-taskmanager,;t t
|
s,@PACKAGE@,xfce4-taskmanager,;t t
|
||||||
s,@VERSION@,0.1.0,;t t
|
s,@VERSION@,0.3.2,;t t
|
||||||
s,@ACLOCAL@,${SHELL} /home/the_hippie/devel/xfce4-taskmanager/missing --run aclocal-1.9,;t t
|
s,@ACLOCAL@,${SHELL} /home/the_hippie/Projekte/xfce4-taskmanager/missing --run aclocal-1.9,;t t
|
||||||
s,@AUTOCONF@,${SHELL} /home/the_hippie/devel/xfce4-taskmanager/missing --run autoconf,;t t
|
s,@AUTOCONF@,${SHELL} /home/the_hippie/Projekte/xfce4-taskmanager/missing --run autoconf,;t t
|
||||||
s,@AUTOMAKE@,${SHELL} /home/the_hippie/devel/xfce4-taskmanager/missing --run automake-1.9,;t t
|
s,@AUTOMAKE@,${SHELL} /home/the_hippie/Projekte/xfce4-taskmanager/missing --run automake-1.9,;t t
|
||||||
s,@AUTOHEADER@,${SHELL} /home/the_hippie/devel/xfce4-taskmanager/missing --run autoheader,;t t
|
s,@AUTOHEADER@,${SHELL} /home/the_hippie/Projekte/xfce4-taskmanager/missing --run autoheader,;t t
|
||||||
s,@MAKEINFO@,${SHELL} /home/the_hippie/devel/xfce4-taskmanager/missing --run makeinfo,;t t
|
s,@MAKEINFO@,${SHELL} /home/the_hippie/Projekte/xfce4-taskmanager/missing --run makeinfo,;t t
|
||||||
s,@install_sh@,/home/the_hippie/devel/xfce4-taskmanager/install-sh,;t t
|
s,@install_sh@,/home/the_hippie/Projekte/xfce4-taskmanager/install-sh,;t t
|
||||||
s,@STRIP@,,;t t
|
s,@STRIP@,strip,;t t
|
||||||
s,@ac_ct_STRIP@,,;t t
|
s,@ac_ct_STRIP@,strip,;t t
|
||||||
s,@INSTALL_STRIP_PROGRAM@,${SHELL} $(install_sh) -c -s,;t t
|
s,@INSTALL_STRIP_PROGRAM@,${SHELL} $(install_sh) -c -s,;t t
|
||||||
s,@mkdir_p@,mkdir -p --,;t t
|
s,@mkdir_p@,mkdir -p -- .,;t t
|
||||||
s,@AWK@,gawk,;t t
|
s,@AWK@,gawk,;t t
|
||||||
s,@SET_MAKE@,,;t t
|
s,@SET_MAKE@,,;t t
|
||||||
s,@am__leading_dot@,.,;t t
|
s,@am__leading_dot@,.,;t t
|
||||||
s,@AMTAR@,${SHELL} /home/the_hippie/devel/xfce4-taskmanager/missing --run tar,;t t
|
s,@AMTAR@,${SHELL} /home/the_hippie/Projekte/xfce4-taskmanager/missing --run tar,;t t
|
||||||
s,@am__tar@,${AMTAR} chof - "$$tardir",;t t
|
s,@am__tar@,${AMTAR} chof - "$$tardir",;t t
|
||||||
s,@am__untar@,${AMTAR} xf -,;t t
|
s,@am__untar@,${AMTAR} xf -,;t t
|
||||||
|
s,@MAINTAINER_MODE_TRUE@,#,;t t
|
||||||
|
s,@MAINTAINER_MODE_FALSE@,,;t t
|
||||||
|
s,@MAINT@,#,;t t
|
||||||
s,@CC@,gcc,;t t
|
s,@CC@,gcc,;t t
|
||||||
s,@CFLAGS@,-g -O2,;t t
|
s,@CFLAGS@,-g -O2,;t t
|
||||||
s,@LDFLAGS@,,;t t
|
s,@LDFLAGS@, -Wl,-O1,;t t
|
||||||
s,@CPPFLAGS@,,;t t
|
s,@CPPFLAGS@,,;t t
|
||||||
s,@ac_ct_CC@,gcc,;t t
|
s,@ac_ct_CC@,gcc,;t t
|
||||||
s,@EXEEXT@,,;t t
|
s,@EXEEXT@,,;t t
|
||||||
@@ -513,9 +532,85 @@ s,@AMDEPBACKSLASH@,\,;t t
|
|||||||
s,@CCDEPMODE@,depmode=gcc3,;t t
|
s,@CCDEPMODE@,depmode=gcc3,;t t
|
||||||
s,@am__fastdepCC_TRUE@,,;t t
|
s,@am__fastdepCC_TRUE@,,;t t
|
||||||
s,@am__fastdepCC_FALSE@,#,;t t
|
s,@am__fastdepCC_FALSE@,#,;t t
|
||||||
s,@PKG_CONFIG@,/usr/local/bin/pkg-config,;t t
|
s,@CPP@,gcc -E,;t t
|
||||||
s,@DEPS_CFLAGS@,-DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/X11R6/include -I/usr/local/include/xfce4 -I/opt/gnome/include/gtk-2.0 -I/opt/gnome/lib/gtk-2.0/include -I/opt/gnome/include/atk-1.0 -I/opt/gnome/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/freetype2/config -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include ,;t t
|
s,@EGREP@,grep -E,;t t
|
||||||
s,@DEPS_LIBS@,-Wl,--export-dynamic -L/usr/X11R6/lib -L/usr/local/lib -L/opt/gnome/lib -lxfcegui4 -lgtk-x11-2.0 -lxfce4util -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 ,;t t
|
s,@build@,i686-pc-linux-gnu,;t t
|
||||||
|
s,@build_cpu@,i686,;t t
|
||||||
|
s,@build_vendor@,pc,;t t
|
||||||
|
s,@build_os@,linux-gnu,;t t
|
||||||
|
s,@host@,i686-pc-linux-gnu,;t t
|
||||||
|
s,@host_cpu@,i686,;t t
|
||||||
|
s,@host_vendor@,pc,;t t
|
||||||
|
s,@host_os@,linux-gnu,;t t
|
||||||
|
s,@LN_S@,ln -s,;t t
|
||||||
|
s,@ECHO@,echo,;t t
|
||||||
|
s,@AR@,ar,;t t
|
||||||
|
s,@ac_ct_AR@,ar,;t t
|
||||||
|
s,@RANLIB@,ranlib,;t t
|
||||||
|
s,@ac_ct_RANLIB@,ranlib,;t t
|
||||||
|
s,@CXX@,g++,;t t
|
||||||
|
s,@CXXFLAGS@,-g -O2,;t t
|
||||||
|
s,@ac_ct_CXX@,g++,;t t
|
||||||
|
s,@CXXDEPMODE@,depmode=gcc3,;t t
|
||||||
|
s,@am__fastdepCXX_TRUE@,,;t t
|
||||||
|
s,@am__fastdepCXX_FALSE@,#,;t t
|
||||||
|
s,@CXXCPP@,g++ -E,;t t
|
||||||
|
s,@F77@,,;t t
|
||||||
|
s,@FFLAGS@,,;t t
|
||||||
|
s,@ac_ct_F77@,,;t t
|
||||||
|
s,@LIBTOOL@,$(SHELL) $(top_builddir)/libtool,;t t
|
||||||
|
s,@INTLTOOL_DESKTOP_RULE@,%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_DIRECTORY_RULE@,%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_KEYS_RULE@,%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_PROP_RULE@,%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_OAF_RULE@,%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_PONG_RULE@,%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_SERVER_RULE@,%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_SHEET_RULE@,%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_SOUNDLIST_RULE@,%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_UI_RULE@,%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_XAM_RULE@,%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_KBD_RULE@,%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_XML_RULE@,%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_XML_NOMERGE_RULE@,%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@,;t t
|
||||||
|
s,@INTLTOOL_CAVES_RULE@,%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_SCHEMAS_RULE@,%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_THEME_RULE@,%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@,;t t
|
||||||
|
s,@INTLTOOL_EXTRACT@,$(top_builddir)/intltool-extract,;t t
|
||||||
|
s,@INTLTOOL_MERGE@,$(top_builddir)/intltool-merge,;t t
|
||||||
|
s,@INTLTOOL_UPDATE@,$(top_builddir)/intltool-update,;t t
|
||||||
|
s,@INTLTOOL_PERL@,/usr/bin/perl,;t t
|
||||||
|
s,@INTLTOOL_ICONV@,/usr/bin/iconv,;t t
|
||||||
|
s,@INTLTOOL_MSGFMT@,/usr/bin/msgfmt,;t t
|
||||||
|
s,@INTLTOOL_MSGMERGE@,/usr/bin/msgmerge,;t t
|
||||||
|
s,@INTLTOOL_XGETTEXT@,/usr/bin/xgettext,;t t
|
||||||
|
s,@PKG_CONFIG@,/usr/bin/pkg-config,;t t
|
||||||
|
s,@XFCE4_GUI_VERSION@,4.2.2,;t t
|
||||||
|
s,@XFCE4_GUI_CFLAGS@,-DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/X11R6/include -I/opt/lunar/xfce4/include/xfce4 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/freetype2/config -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 ,;t t
|
||||||
|
s,@XFCE4_GUI_LIBS@,-L/usr/X11R6/lib -L/opt/lunar/xfce4/lib -lxfcegui4 -lgtk-x11-2.0 -lxfce4util -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 ,;t t
|
||||||
|
s,@XFCE4_GUI_REQUIRED_VERSION@,4.2.0,;t t
|
||||||
|
s,@GTK_VERSION@,2.6.8,;t t
|
||||||
|
s,@GTK_CFLAGS@,-DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/freetype2/config -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include ,;t t
|
||||||
|
s,@GTK_LIBS@,-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 ,;t t
|
||||||
|
s,@GTK_REQUIRED_VERSION@,2.2.0,;t t
|
||||||
|
s,@GETTEXT_PACKAGE@,fi,;t t
|
||||||
|
s,@USE_NLS@,yes,;t t
|
||||||
|
s,@MSGFMT@,/usr/bin/msgfmt,;t t
|
||||||
|
s,@GMSGFMT@,/usr/bin/msgfmt,;t t
|
||||||
|
s,@XGETTEXT@,/usr/bin/xgettext,;t t
|
||||||
|
s,@CATALOGS@, de.gmo,;t t
|
||||||
|
s,@CATOBJEXT@,.gmo,;t t
|
||||||
|
s,@DATADIRNAME@,share,;t t
|
||||||
|
s,@GMOFILES@, de.gmo,;t t
|
||||||
|
s,@INSTOBJEXT@,.mo,;t t
|
||||||
|
s,@INTLLIBS@,,;t t
|
||||||
|
s,@PO_IN_DATADIR_TRUE@,,;t t
|
||||||
|
s,@PO_IN_DATADIR_FALSE@,,;t t
|
||||||
|
s,@POFILES@, de.po,;t t
|
||||||
|
s,@POSUB@,po,;t t
|
||||||
|
s,@MKINSTALLDIRS@,./mkinstalldirs,;t t
|
||||||
|
s,@localedir@,${prefix}/share/locale,;t t
|
||||||
|
s,@XGETTEXT_ARGS@,--keyword=Q_,;t t
|
||||||
s,@LIBOBJS@,,;t t
|
s,@LIBOBJS@,,;t t
|
||||||
s,@LTLIBOBJS@,,;t t
|
s,@LTLIBOBJS@,,;t t
|
||||||
CEOF
|
CEOF
|
||||||
@@ -754,6 +849,231 @@ s,@INSTALL@,$ac_INSTALL,;t t
|
|||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
#
|
||||||
|
# CONFIG_HEADER section.
|
||||||
|
#
|
||||||
|
|
||||||
|
# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
|
||||||
|
# NAME is the cpp macro being defined and VALUE is the value it is being given.
|
||||||
|
#
|
||||||
|
# ac_d sets the value in "#define NAME VALUE" lines.
|
||||||
|
ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
|
||||||
|
ac_dB='[ ].*$,\1#\2'
|
||||||
|
ac_dC=' '
|
||||||
|
ac_dD=',;t'
|
||||||
|
# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
|
||||||
|
ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
|
||||||
|
ac_uB='$,\1#\2define\3'
|
||||||
|
ac_uC=' '
|
||||||
|
ac_uD=',;t'
|
||||||
|
|
||||||
|
for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
|
||||||
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
|
||||||
|
case $ac_file in
|
||||||
|
- | *:- | *:-:* ) # input from stdin
|
||||||
|
cat >$tmp/stdin
|
||||||
|
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
||||||
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
||||||
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
||||||
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
||||||
|
* ) ac_file_in=$ac_file.in ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
|
||||||
|
echo "$as_me: creating $ac_file" >&6;}
|
||||||
|
|
||||||
|
# First look for the input files in the build tree, otherwise in the
|
||||||
|
# src tree.
|
||||||
|
ac_file_inputs=`IFS=:
|
||||||
|
for f in $ac_file_in; do
|
||||||
|
case $f in
|
||||||
|
-) echo $tmp/stdin ;;
|
||||||
|
[\\/$]*)
|
||||||
|
# Absolute (can't be DOS-style, as IFS=:)
|
||||||
|
test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }
|
||||||
|
# Do quote $f, to prevent DOS paths from being IFS'd.
|
||||||
|
echo "$f";;
|
||||||
|
*) # Relative
|
||||||
|
if test -f "$f"; then
|
||||||
|
# Build tree
|
||||||
|
echo "$f"
|
||||||
|
elif test -f "$srcdir/$f"; then
|
||||||
|
# Source tree
|
||||||
|
echo "$srcdir/$f"
|
||||||
|
else
|
||||||
|
# /dev/null tree
|
||||||
|
{ { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }
|
||||||
|
fi;;
|
||||||
|
esac
|
||||||
|
done` || { (exit 1); exit 1; }
|
||||||
|
# Remove the trailing spaces.
|
||||||
|
sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
|
||||||
|
|
||||||
|
# Handle all the #define templates only if necessary.
|
||||||
|
if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then
|
||||||
|
# If there are no defines, we may have an empty if/fi
|
||||||
|
:
|
||||||
|
cat >$tmp/defines.sed <<CEOF
|
||||||
|
/^[ ]*#[ ]*define/!b
|
||||||
|
t clr
|
||||||
|
: clr
|
||||||
|
${ac_dA}PACKAGE_NAME${ac_dB}PACKAGE_NAME${ac_dC}"xfce4-taskmanager"${ac_dD}
|
||||||
|
${ac_dA}PACKAGE_TARNAME${ac_dB}PACKAGE_TARNAME${ac_dC}"xfce4-taskmanager"${ac_dD}
|
||||||
|
${ac_dA}PACKAGE_VERSION${ac_dB}PACKAGE_VERSION${ac_dC}"0.3.2"${ac_dD}
|
||||||
|
${ac_dA}PACKAGE_STRING${ac_dB}PACKAGE_STRING${ac_dC}"xfce4-taskmanager 0.3.2"${ac_dD}
|
||||||
|
${ac_dA}PACKAGE_BUGREPORT${ac_dB}PACKAGE_BUGREPORT${ac_dC}"xfce4-taskmanger@nebulon.de"${ac_dD}
|
||||||
|
${ac_dA}PACKAGE${ac_dB}PACKAGE${ac_dC}"xfce4-taskmanager"${ac_dD}
|
||||||
|
${ac_dA}VERSION${ac_dB}VERSION${ac_dC}"0.3.2"${ac_dD}
|
||||||
|
${ac_dA}STDC_HEADERS${ac_dB}STDC_HEADERS${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_SYS_TYPES_H${ac_dB}HAVE_SYS_TYPES_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_SYS_STAT_H${ac_dB}HAVE_SYS_STAT_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_STDLIB_H${ac_dB}HAVE_STDLIB_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_STRING_H${ac_dB}HAVE_STRING_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_MEMORY_H${ac_dB}HAVE_MEMORY_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_STRINGS_H${ac_dB}HAVE_STRINGS_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_INTTYPES_H${ac_dB}HAVE_INTTYPES_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_STDINT_H${ac_dB}HAVE_STDINT_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_UNISTD_H${ac_dB}HAVE_UNISTD_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}STDC_HEADERS${ac_dB}STDC_HEADERS${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_DLFCN_H${ac_dB}HAVE_DLFCN_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}GETTEXT_PACKAGE${ac_dB}GETTEXT_PACKAGE${ac_dC}"fi"${ac_dD}
|
||||||
|
${ac_dA}HAVE_LOCALE_H${ac_dB}HAVE_LOCALE_H${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_LC_MESSAGES${ac_dB}HAVE_LC_MESSAGES${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_BIND_TEXTDOMAIN_CODESET${ac_dB}HAVE_BIND_TEXTDOMAIN_CODESET${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_GETTEXT${ac_dB}HAVE_GETTEXT${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}HAVE_DCGETTEXT${ac_dB}HAVE_DCGETTEXT${ac_dC}1${ac_dD}
|
||||||
|
${ac_dA}ENABLE_NLS${ac_dB}ENABLE_NLS${ac_dC}1${ac_dD}
|
||||||
|
CEOF
|
||||||
|
sed -f $tmp/defines.sed $tmp/in >$tmp/out
|
||||||
|
rm -f $tmp/in
|
||||||
|
mv $tmp/out $tmp/in
|
||||||
|
|
||||||
|
fi # grep
|
||||||
|
|
||||||
|
# Handle all the #undef templates
|
||||||
|
cat >$tmp/undefs.sed <<CEOF
|
||||||
|
/^[ ]*#[ ]*undef/!b
|
||||||
|
t clr
|
||||||
|
: clr
|
||||||
|
${ac_uA}PACKAGE_NAME${ac_uB}PACKAGE_NAME${ac_uC}"xfce4-taskmanager"${ac_uD}
|
||||||
|
${ac_uA}PACKAGE_TARNAME${ac_uB}PACKAGE_TARNAME${ac_uC}"xfce4-taskmanager"${ac_uD}
|
||||||
|
${ac_uA}PACKAGE_VERSION${ac_uB}PACKAGE_VERSION${ac_uC}"0.3.2"${ac_uD}
|
||||||
|
${ac_uA}PACKAGE_STRING${ac_uB}PACKAGE_STRING${ac_uC}"xfce4-taskmanager 0.3.2"${ac_uD}
|
||||||
|
${ac_uA}PACKAGE_BUGREPORT${ac_uB}PACKAGE_BUGREPORT${ac_uC}"xfce4-taskmanger@nebulon.de"${ac_uD}
|
||||||
|
${ac_uA}PACKAGE${ac_uB}PACKAGE${ac_uC}"xfce4-taskmanager"${ac_uD}
|
||||||
|
${ac_uA}VERSION${ac_uB}VERSION${ac_uC}"0.3.2"${ac_uD}
|
||||||
|
${ac_uA}STDC_HEADERS${ac_uB}STDC_HEADERS${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_SYS_TYPES_H${ac_uB}HAVE_SYS_TYPES_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_SYS_STAT_H${ac_uB}HAVE_SYS_STAT_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_STDLIB_H${ac_uB}HAVE_STDLIB_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_STRING_H${ac_uB}HAVE_STRING_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_MEMORY_H${ac_uB}HAVE_MEMORY_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_STRINGS_H${ac_uB}HAVE_STRINGS_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_INTTYPES_H${ac_uB}HAVE_INTTYPES_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_STDINT_H${ac_uB}HAVE_STDINT_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_UNISTD_H${ac_uB}HAVE_UNISTD_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}STDC_HEADERS${ac_uB}STDC_HEADERS${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_DLFCN_H${ac_uB}HAVE_DLFCN_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}GETTEXT_PACKAGE${ac_uB}GETTEXT_PACKAGE${ac_uC}"fi"${ac_uD}
|
||||||
|
${ac_uA}HAVE_LOCALE_H${ac_uB}HAVE_LOCALE_H${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_LC_MESSAGES${ac_uB}HAVE_LC_MESSAGES${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_BIND_TEXTDOMAIN_CODESET${ac_uB}HAVE_BIND_TEXTDOMAIN_CODESET${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_GETTEXT${ac_uB}HAVE_GETTEXT${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}HAVE_DCGETTEXT${ac_uB}HAVE_DCGETTEXT${ac_uC}1${ac_uD}
|
||||||
|
${ac_uA}ENABLE_NLS${ac_uB}ENABLE_NLS${ac_uC}1${ac_uD}
|
||||||
|
s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
|
||||||
|
CEOF
|
||||||
|
sed -f $tmp/undefs.sed $tmp/in >$tmp/out
|
||||||
|
rm -f $tmp/in
|
||||||
|
mv $tmp/out $tmp/in
|
||||||
|
|
||||||
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
||||||
|
# use $as_me), people would be surprised to read:
|
||||||
|
# /* config.h. Generated by config.status. */
|
||||||
|
if test x"$ac_file" = x-; then
|
||||||
|
echo "/* Generated by configure. */" >$tmp/config.h
|
||||||
|
else
|
||||||
|
echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
|
||||||
|
fi
|
||||||
|
cat $tmp/in >>$tmp/config.h
|
||||||
|
rm -f $tmp/in
|
||||||
|
if test x"$ac_file" != x-; then
|
||||||
|
if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
|
||||||
|
{ echo "$as_me:$LINENO: $ac_file is unchanged" >&5
|
||||||
|
echo "$as_me: $ac_file is unchanged" >&6;}
|
||||||
|
else
|
||||||
|
ac_dir=`(dirname "$ac_file") 2>/dev/null ||
|
||||||
|
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
||||||
|
X"$ac_file" : 'X\(//\)$' \| \
|
||||||
|
X"$ac_file" : 'X\(/\)' \| \
|
||||||
|
. : '\(.\)' 2>/dev/null ||
|
||||||
|
echo X"$ac_file" |
|
||||||
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\).*/{ s//\1/; q; }
|
||||||
|
s/.*/./; q'`
|
||||||
|
{ if $as_mkdir_p; then
|
||||||
|
mkdir -p "$ac_dir"
|
||||||
|
else
|
||||||
|
as_dir="$ac_dir"
|
||||||
|
as_dirs=
|
||||||
|
while test ! -d "$as_dir"; do
|
||||||
|
as_dirs="$as_dir $as_dirs"
|
||||||
|
as_dir=`(dirname "$as_dir") 2>/dev/null ||
|
||||||
|
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
|
X"$as_dir" : 'X\(//\)[^/]' \| \
|
||||||
|
X"$as_dir" : 'X\(//\)$' \| \
|
||||||
|
X"$as_dir" : 'X\(/\)' \| \
|
||||||
|
. : '\(.\)' 2>/dev/null ||
|
||||||
|
echo X"$as_dir" |
|
||||||
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\).*/{ s//\1/; q; }
|
||||||
|
s/.*/./; q'`
|
||||||
|
done
|
||||||
|
test ! -n "$as_dirs" || mkdir $as_dirs
|
||||||
|
fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
|
||||||
|
echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }; }
|
||||||
|
|
||||||
|
rm -f $ac_file
|
||||||
|
mv $tmp/config.h $ac_file
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
cat $tmp/config.h
|
||||||
|
rm -f $tmp/config.h
|
||||||
|
fi
|
||||||
|
# Compute $ac_file's index in $config_headers.
|
||||||
|
_am_stamp_count=1
|
||||||
|
for _am_header in $config_headers :; do
|
||||||
|
case $_am_header in
|
||||||
|
$ac_file | $ac_file:* )
|
||||||
|
break ;;
|
||||||
|
* )
|
||||||
|
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
|
||||||
|
$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
|
X$ac_file : 'X\(//\)[^/]' \| \
|
||||||
|
X$ac_file : 'X\(//\)$' \| \
|
||||||
|
X$ac_file : 'X\(/\)' \| \
|
||||||
|
. : '\(.\)' 2>/dev/null ||
|
||||||
|
echo X$ac_file |
|
||||||
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\).*/{ s//\1/; q; }
|
||||||
|
s/.*/./; q'`/stamp-h$_am_stamp_count
|
||||||
|
done
|
||||||
|
|
||||||
#
|
#
|
||||||
# CONFIG_COMMANDS section.
|
# CONFIG_COMMANDS section.
|
||||||
#
|
#
|
||||||
@@ -951,6 +1271,49 @@ echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
|
intltool )
|
||||||
|
|
||||||
|
intltool_edit="-e 's#@INTLTOOL_EXTRACT@#`pwd`/intltool-extract#g' \
|
||||||
|
-e 's#@INTLTOOL_ICONV@#${INTLTOOL_ICONV}#g' \
|
||||||
|
-e 's#@INTLTOOL_MSGFMT@#${INTLTOOL_MSGFMT}#g' \
|
||||||
|
-e 's#@INTLTOOL_MSGMERGE@#${INTLTOOL_MSGMERGE}#g' \
|
||||||
|
-e 's#@INTLTOOL_XGETTEXT@#${INTLTOOL_XGETTEXT}#g' \
|
||||||
|
-e 's#@INTLTOOL_PERL@#${INTLTOOL_PERL}#g'"
|
||||||
|
|
||||||
|
eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-extract.in \
|
||||||
|
> intltool-extract.out
|
||||||
|
if cmp -s intltool-extract intltool-extract.out 2>/dev/null; then
|
||||||
|
rm -f intltool-extract.out
|
||||||
|
else
|
||||||
|
mv -f intltool-extract.out intltool-extract
|
||||||
|
fi
|
||||||
|
chmod ugo+x intltool-extract
|
||||||
|
chmod u+w intltool-extract
|
||||||
|
|
||||||
|
eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-merge.in \
|
||||||
|
> intltool-merge.out
|
||||||
|
if cmp -s intltool-merge intltool-merge.out 2>/dev/null; then
|
||||||
|
rm -f intltool-merge.out
|
||||||
|
else
|
||||||
|
mv -f intltool-merge.out intltool-merge
|
||||||
|
fi
|
||||||
|
chmod ugo+x intltool-merge
|
||||||
|
chmod u+w intltool-merge
|
||||||
|
|
||||||
|
eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-update.in \
|
||||||
|
> intltool-update.out
|
||||||
|
if cmp -s intltool-update intltool-update.out 2>/dev/null; then
|
||||||
|
rm -f intltool-update.out
|
||||||
|
else
|
||||||
|
mv -f intltool-update.out intltool-update
|
||||||
|
fi
|
||||||
|
chmod ugo+x intltool-update
|
||||||
|
chmod u+w intltool-update
|
||||||
|
|
||||||
|
;;
|
||||||
|
default-1 ) case "$CONFIG_FILES" in *po/Makefile.in*)
|
||||||
|
sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
|
||||||
|
esac ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
53
depcomp
53
depcomp
@@ -1,9 +1,9 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# depcomp - compile a program generating dependencies as side-effects
|
# depcomp - compile a program generating dependencies as side-effects
|
||||||
|
|
||||||
scriptversion=2004-05-31.23
|
scriptversion=2005-02-09.22
|
||||||
|
|
||||||
# Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
|
# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -50,11 +50,11 @@ Environment variables:
|
|||||||
|
|
||||||
Report bugs to <bug-automake@gnu.org>.
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
EOF
|
EOF
|
||||||
exit 0
|
exit $?
|
||||||
;;
|
;;
|
||||||
-v | --v*)
|
-v | --v*)
|
||||||
echo "depcomp $scriptversion"
|
echo "depcomp $scriptversion"
|
||||||
exit 0
|
exit $?
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -287,36 +287,43 @@ tru64)
|
|||||||
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
||||||
|
|
||||||
if test "$libtool" = yes; then
|
if test "$libtool" = yes; then
|
||||||
# Dependencies are output in .lo.d with libtool 1.4.
|
# With Tru64 cc, shared objects can also be used to make a
|
||||||
# With libtool 1.5 they are output both in $dir.libs/$base.o.d
|
# static library. This mecanism is used in libtool 1.4 series to
|
||||||
# and in $dir.libs/$base.o.d and $dir$base.o.d. We process the
|
# handle both shared and static libraries in a single compilation.
|
||||||
# latter, because the former will be cleaned when $dir.libs is
|
# With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
|
||||||
# erased.
|
#
|
||||||
tmpdepfile1="$dir.libs/$base.lo.d"
|
# With libtool 1.5 this exception was removed, and libtool now
|
||||||
tmpdepfile2="$dir$base.o.d"
|
# generates 2 separate objects for the 2 libraries. These two
|
||||||
tmpdepfile3="$dir.libs/$base.d"
|
# compilations output dependencies in in $dir.libs/$base.o.d and
|
||||||
|
# in $dir$base.o.d. We have to check for both files, because
|
||||||
|
# one of the two compilations can be disabled. We should prefer
|
||||||
|
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
||||||
|
# automatically cleaned when .libs/ is deleted, while ignoring
|
||||||
|
# the former would cause a distcleancheck panic.
|
||||||
|
tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4
|
||||||
|
tmpdepfile2=$dir$base.o.d # libtool 1.5
|
||||||
|
tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5
|
||||||
|
tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504
|
||||||
"$@" -Wc,-MD
|
"$@" -Wc,-MD
|
||||||
else
|
else
|
||||||
tmpdepfile1="$dir$base.o.d"
|
tmpdepfile1=$dir$base.o.d
|
||||||
tmpdepfile2="$dir$base.d"
|
tmpdepfile2=$dir$base.d
|
||||||
tmpdepfile3="$dir$base.d"
|
tmpdepfile3=$dir$base.d
|
||||||
|
tmpdepfile4=$dir$base.d
|
||||||
"$@" -MD
|
"$@" -MD
|
||||||
fi
|
fi
|
||||||
|
|
||||||
stat=$?
|
stat=$?
|
||||||
if test $stat -eq 0; then :
|
if test $stat -eq 0; then :
|
||||||
else
|
else
|
||||||
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
||||||
exit $stat
|
exit $stat
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -f "$tmpdepfile1"; then
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
||||||
tmpdepfile="$tmpdepfile1"
|
do
|
||||||
elif test -f "$tmpdepfile2"; then
|
test -f "$tmpdepfile" && break
|
||||||
tmpdepfile="$tmpdepfile2"
|
done
|
||||||
else
|
|
||||||
tmpdepfile="$tmpdepfile3"
|
|
||||||
fi
|
|
||||||
if test -f "$tmpdepfile"; then
|
if test -f "$tmpdepfile"; then
|
||||||
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
||||||
# That's a tab and a space in the [].
|
# That's a tab and a space in the [].
|
||||||
|
|||||||
19
install-sh
19
install-sh
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# install - install a program, script, or datafile
|
# install - install a program, script, or datafile
|
||||||
|
|
||||||
scriptversion=2004-07-05.00
|
scriptversion=2005-02-02.21
|
||||||
|
|
||||||
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
||||||
# later released in X11R6 (xc/config/util/install.sh) with the
|
# later released in X11R6 (xc/config/util/install.sh) with the
|
||||||
@@ -109,7 +109,7 @@ while test -n "$1"; do
|
|||||||
shift
|
shift
|
||||||
continue;;
|
continue;;
|
||||||
|
|
||||||
--help) echo "$usage"; exit 0;;
|
--help) echo "$usage"; exit $?;;
|
||||||
|
|
||||||
-m) chmodcmd="$chmodprog $2"
|
-m) chmodcmd="$chmodprog $2"
|
||||||
shift
|
shift
|
||||||
@@ -134,7 +134,7 @@ while test -n "$1"; do
|
|||||||
shift
|
shift
|
||||||
continue;;
|
continue;;
|
||||||
|
|
||||||
--version) echo "$0 $scriptversion"; exit 0;;
|
--version) echo "$0 $scriptversion"; exit $?;;
|
||||||
|
|
||||||
*) # When -d is used, all remaining arguments are directories to create.
|
*) # When -d is used, all remaining arguments are directories to create.
|
||||||
# When -t is used, the destination is already specified.
|
# When -t is used, the destination is already specified.
|
||||||
@@ -213,7 +213,7 @@ do
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# This sed command emulates the dirname command.
|
# This sed command emulates the dirname command.
|
||||||
dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
|
dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
|
||||||
|
|
||||||
# Make sure that the destination directory exists.
|
# Make sure that the destination directory exists.
|
||||||
|
|
||||||
@@ -226,7 +226,8 @@ do
|
|||||||
oIFS=$IFS
|
oIFS=$IFS
|
||||||
# Some sh's can't handle IFS=/ for some reason.
|
# Some sh's can't handle IFS=/ for some reason.
|
||||||
IFS='%'
|
IFS='%'
|
||||||
set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
|
set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
|
||||||
|
shift
|
||||||
IFS=$oIFS
|
IFS=$oIFS
|
||||||
|
|
||||||
pathcomp=
|
pathcomp=
|
||||||
@@ -260,7 +261,7 @@ do
|
|||||||
rmtmp=$dstdir/_rm.$$_
|
rmtmp=$dstdir/_rm.$$_
|
||||||
|
|
||||||
# Trap to clean up those temp files at exit.
|
# Trap to clean up those temp files at exit.
|
||||||
trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0
|
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
||||||
trap '(exit $?); exit' 1 2 13 15
|
trap '(exit $?); exit' 1 2 13 15
|
||||||
|
|
||||||
# Copy the file name to the temp name.
|
# Copy the file name to the temp name.
|
||||||
@@ -295,7 +296,7 @@ do
|
|||||||
|| $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
|
|| $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
|
||||||
|| {
|
|| {
|
||||||
echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
|
echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
|
||||||
(exit 1); exit
|
(exit 1); exit 1
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
:
|
:
|
||||||
@@ -306,12 +307,12 @@ do
|
|||||||
$doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
|
$doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fi || { (exit 1); exit; }
|
fi || { (exit 1); exit 1; }
|
||||||
done
|
done
|
||||||
|
|
||||||
# The final little trick to "correctly" pass the exit status to the exit trap.
|
# The final little trick to "correctly" pass the exit status to the exit trap.
|
||||||
{
|
{
|
||||||
(exit 0); exit
|
(exit 0); exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
# Local variables:
|
# Local variables:
|
||||||
|
|||||||
85
missing
85
missing
@@ -1,9 +1,9 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Common stub for a few missing GNU programs while installing.
|
# Common stub for a few missing GNU programs while installing.
|
||||||
|
|
||||||
scriptversion=2003-09-02.23
|
scriptversion=2005-02-08.22
|
||||||
|
|
||||||
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003
|
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
||||||
|
|
||||||
@@ -60,11 +60,6 @@ case "$1" in
|
|||||||
msg="probably too old"
|
msg="probably too old"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
|
||||||
|
|
||||||
# If it does not exist, or fails to run (possibly an outdated version),
|
|
||||||
# try to emulate it.
|
|
||||||
case "$1" in
|
|
||||||
|
|
||||||
-h|--h|--he|--hel|--help)
|
-h|--h|--he|--hel|--help)
|
||||||
echo "\
|
echo "\
|
||||||
@@ -92,10 +87,12 @@ Supported PROGRAM values:
|
|||||||
yacc create \`y.tab.[ch]', if possible, from existing .[ch]
|
yacc create \`y.tab.[ch]', if possible, from existing .[ch]
|
||||||
|
|
||||||
Send bug reports to <bug-automake@gnu.org>."
|
Send bug reports to <bug-automake@gnu.org>."
|
||||||
|
exit $?
|
||||||
;;
|
;;
|
||||||
|
|
||||||
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
||||||
echo "missing $scriptversion (GNU Automake)"
|
echo "missing $scriptversion (GNU Automake)"
|
||||||
|
exit $?
|
||||||
;;
|
;;
|
||||||
|
|
||||||
-*)
|
-*)
|
||||||
@@ -104,12 +101,42 @@ Send bug reports to <bug-automake@gnu.org>."
|
|||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
|
|
||||||
aclocal*)
|
esac
|
||||||
|
|
||||||
|
# Now exit if we have it, but it failed. Also exit now if we
|
||||||
|
# don't have it and --version was passed (most likely to detect
|
||||||
|
# the program).
|
||||||
|
case "$1" in
|
||||||
|
lex|yacc)
|
||||||
|
# Not GNU programs, they don't have --version.
|
||||||
|
;;
|
||||||
|
|
||||||
|
tar)
|
||||||
|
if test -n "$run"; then
|
||||||
|
echo 1>&2 "ERROR: \`tar' requires --run"
|
||||||
|
exit 1
|
||||||
|
elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||||
# We have it, but it failed.
|
# We have it, but it failed.
|
||||||
exit 1
|
exit 1
|
||||||
|
elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
|
||||||
|
# Could not run --version or --help. This is probably someone
|
||||||
|
# running `$TOOL --version' or `$TOOL --help' to check whether
|
||||||
|
# $TOOL exists and not knowing $TOOL uses missing.
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# If it does not exist, or fails to run (possibly an outdated version),
|
||||||
|
# try to emulate it.
|
||||||
|
case "$1" in
|
||||||
|
aclocal*)
|
||||||
echo 1>&2 "\
|
echo 1>&2 "\
|
||||||
WARNING: \`$1' is $msg. You should only need it if
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
you modified \`acinclude.m4' or \`${configure_ac}'. You might want
|
you modified \`acinclude.m4' or \`${configure_ac}'. You might want
|
||||||
@@ -119,11 +146,6 @@ WARNING: \`$1' is $msg. You should only need it if
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
autoconf)
|
autoconf)
|
||||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
||||||
# We have it, but it failed.
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo 1>&2 "\
|
echo 1>&2 "\
|
||||||
WARNING: \`$1' is $msg. You should only need it if
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
you modified \`${configure_ac}'. You might want to install the
|
you modified \`${configure_ac}'. You might want to install the
|
||||||
@@ -133,11 +155,6 @@ WARNING: \`$1' is $msg. You should only need it if
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
autoheader)
|
autoheader)
|
||||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
||||||
# We have it, but it failed.
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo 1>&2 "\
|
echo 1>&2 "\
|
||||||
WARNING: \`$1' is $msg. You should only need it if
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
you modified \`acconfig.h' or \`${configure_ac}'. You might want
|
you modified \`acconfig.h' or \`${configure_ac}'. You might want
|
||||||
@@ -157,11 +174,6 @@ WARNING: \`$1' is $msg. You should only need it if
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
automake*)
|
automake*)
|
||||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
||||||
# We have it, but it failed.
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo 1>&2 "\
|
echo 1>&2 "\
|
||||||
WARNING: \`$1' is $msg. You should only need it if
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
|
you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
|
||||||
@@ -173,11 +185,6 @@ WARNING: \`$1' is $msg. You should only need it if
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
autom4te)
|
autom4te)
|
||||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
||||||
# We have it, but it failed.
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo 1>&2 "\
|
echo 1>&2 "\
|
||||||
WARNING: \`$1' is needed, but is $msg.
|
WARNING: \`$1' is needed, but is $msg.
|
||||||
You might have modified some files without having the
|
You might have modified some files without having the
|
||||||
@@ -254,11 +261,6 @@ WARNING: \`$1' is $msg. You should only need it if
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
help2man)
|
help2man)
|
||||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
||||||
# We have it, but it failed.
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo 1>&2 "\
|
echo 1>&2 "\
|
||||||
WARNING: \`$1' is $msg. You should only need it if
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
you modified a dependency of a manual page. You may need the
|
you modified a dependency of a manual page. You may need the
|
||||||
@@ -279,11 +281,6 @@ WARNING: \`$1' is $msg. You should only need it if
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
makeinfo)
|
makeinfo)
|
||||||
if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then
|
|
||||||
# We have makeinfo, but it failed.
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo 1>&2 "\
|
echo 1>&2 "\
|
||||||
WARNING: \`$1' is $msg. You should only need it if
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
you modified a \`.texi' or \`.texinfo' file, or any other file
|
you modified a \`.texi' or \`.texinfo' file, or any other file
|
||||||
@@ -291,20 +288,20 @@ WARNING: \`$1' is $msg. You should only need it if
|
|||||||
call might also be the consequence of using a buggy \`make' (AIX,
|
call might also be the consequence of using a buggy \`make' (AIX,
|
||||||
DU, IRIX). You might want to install the \`Texinfo' package or
|
DU, IRIX). You might want to install the \`Texinfo' package or
|
||||||
the \`GNU make' package. Grab either from any GNU archive site."
|
the \`GNU make' package. Grab either from any GNU archive site."
|
||||||
|
# The file to touch is that specified with -o ...
|
||||||
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
||||||
if test -z "$file"; then
|
if test -z "$file"; then
|
||||||
file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
|
# ... or it is the one specified with @setfilename ...
|
||||||
file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
|
infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
|
||||||
|
file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
|
||||||
|
# ... or it is derived from the source name (dir/f.texi becomes f.info)
|
||||||
|
test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
|
||||||
fi
|
fi
|
||||||
touch $file
|
touch $file
|
||||||
;;
|
;;
|
||||||
|
|
||||||
tar)
|
tar)
|
||||||
shift
|
shift
|
||||||
if test -n "$run"; then
|
|
||||||
echo 1>&2 "ERROR: \`tar' requires --run"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# We have already tried tar in the generic part.
|
# We have already tried tar in the generic part.
|
||||||
# Look for gnutar/gtar before invocation to avoid ugly error
|
# Look for gnutar/gtar before invocation to avoid ugly error
|
||||||
|
|||||||
0
po/ChangeLog
Normal file
0
po/ChangeLog
Normal file
261
po/Makefile
Normal file
261
po/Makefile
Normal file
@@ -0,0 +1,261 @@
|
|||||||
|
# Makefile for program source directory in GNU NLS utilities package.
|
||||||
|
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
||||||
|
#
|
||||||
|
# This file file be copied and used freely without restrictions. It can
|
||||||
|
# be used in projects which are not available under the GNU Public License
|
||||||
|
# but which still want to provide support for the GNU gettext functionality.
|
||||||
|
# Please note that the actual code is *not* freely available.
|
||||||
|
#
|
||||||
|
# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
|
||||||
|
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
|
||||||
|
#
|
||||||
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
|
||||||
|
GETTEXT_PACKAGE = xfce4-goodiesmanager
|
||||||
|
PACKAGE = xfce4-goodiesmanager
|
||||||
|
VERSION = 0.0.1
|
||||||
|
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
|
||||||
|
srcdir = .
|
||||||
|
top_srcdir = ..
|
||||||
|
top_builddir = ..
|
||||||
|
|
||||||
|
|
||||||
|
prefix = /usr/local
|
||||||
|
exec_prefix = ${prefix}
|
||||||
|
datadir = ${prefix}/share
|
||||||
|
libdir = ${exec_prefix}/lib
|
||||||
|
localedir = $(libdir)/locale
|
||||||
|
gnulocaledir = $(datadir)/locale
|
||||||
|
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
||||||
|
subdir = po
|
||||||
|
install_sh = /home/the_hippie/Projekte/xfce4-goodiesmanager/install-sh
|
||||||
|
mkdir_p = mkdir -p -- .
|
||||||
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
|
|
||||||
|
INSTALL = /usr/bin/install -c
|
||||||
|
INSTALL_DATA = ${INSTALL} -m 644
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
GENCAT = @GENCAT@
|
||||||
|
GMSGFMT = /usr/bin/msgfmt
|
||||||
|
MSGFMT = /usr/bin/msgfmt
|
||||||
|
XGETTEXT_ARGS = --keyword=Q_
|
||||||
|
XGETTEXT = /usr/bin/xgettext $(XGETTEXT_ARGS)
|
||||||
|
INTLTOOL_UPDATE = $(top_builddir)/intltool-update
|
||||||
|
INTLTOOL_EXTRACT = $(top_builddir)/intltool-extract
|
||||||
|
MSGMERGE = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
|
GENPOT = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
|
DEFS = -DHAVE_CONFIG_H
|
||||||
|
CFLAGS = -g -O2
|
||||||
|
CPPFLAGS =
|
||||||
|
|
||||||
|
INCLUDES = -I.. -I$(top_srcdir)/intl
|
||||||
|
|
||||||
|
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||||
|
|
||||||
|
SOURCES =
|
||||||
|
POFILES = de.po
|
||||||
|
GMOFILES = de.gmo
|
||||||
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
||||||
|
$(POFILES) $(GMOFILES) $(SOURCES)
|
||||||
|
|
||||||
|
POTFILES = \
|
||||||
|
../src/callbacks.c \
|
||||||
|
../src/functions.c \
|
||||||
|
../src/interface.c \
|
||||||
|
../src/main.c
|
||||||
|
|
||||||
|
CATALOGS = de.gmo
|
||||||
|
CATOBJEXT = .gmo
|
||||||
|
INSTOBJEXT = .mo
|
||||||
|
|
||||||
|
.SUFFIXES:
|
||||||
|
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
|
.c.o:
|
||||||
|
$(COMPILE) $<
|
||||||
|
|
||||||
|
.po.pox:
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
||||||
|
|
||||||
|
.po.mo:
|
||||||
|
$(MSGFMT) -o $@ $<
|
||||||
|
|
||||||
|
.po.gmo:
|
||||||
|
file=`echo $* | sed 's,.*/,,'`.gmo \
|
||||||
|
&& rm -f $$file && $(GMSGFMT) -o $$file $<
|
||||||
|
|
||||||
|
.po.cat:
|
||||||
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
|
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
|
all: all-yes
|
||||||
|
|
||||||
|
all-yes: $(CATALOGS)
|
||||||
|
all-no:
|
||||||
|
|
||||||
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
|
$(GENPOT)
|
||||||
|
|
||||||
|
install: install-exec install-data
|
||||||
|
install-exec:
|
||||||
|
install-data: install-data-yes
|
||||||
|
install-data-no: all
|
||||||
|
install-data-yes: all
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
||||||
|
fi
|
||||||
|
@catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
case "$$cat" in \
|
||||||
|
*.gmo) destdir=$(gnulocaledir);; \
|
||||||
|
*) destdir=$(localedir);; \
|
||||||
|
esac; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $$dir; \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
||||||
|
fi; \
|
||||||
|
if test -r $$cat; then \
|
||||||
|
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
||||||
|
else \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
||||||
|
fi; \
|
||||||
|
if test -r $$cat.m; then \
|
||||||
|
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
||||||
|
else \
|
||||||
|
if test -r $(srcdir)/$$cat.m ; then \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
||||||
|
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
||||||
|
else \
|
||||||
|
true; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
if test "$(PACKAGE)" = "glib"; then \
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
||||||
|
fi; \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
||||||
|
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
|
else \
|
||||||
|
: ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
done
|
||||||
|
if test "$(PACKAGE)" = "glib"; then \
|
||||||
|
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
check: all
|
||||||
|
|
||||||
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
mostlyclean:
|
||||||
|
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
|
rm -fr *.o
|
||||||
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
|
clean: mostlyclean
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
||||||
|
|
||||||
|
maintainer-clean: distclean
|
||||||
|
@echo "This command is intended for maintainers to use;"
|
||||||
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
rm -f $(GMOFILES)
|
||||||
|
|
||||||
|
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
||||||
|
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
||||||
|
dists="$(DISTFILES)"; \
|
||||||
|
for file in $$dists; do \
|
||||||
|
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $(srcdir)/$$file $(distdir); \
|
||||||
|
done
|
||||||
|
|
||||||
|
update-po: Makefile
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
tmpdir=`pwd`; \
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
echo "$$lang:"; \
|
||||||
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
|
if $$result; then \
|
||||||
|
if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
else \
|
||||||
|
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
|
||||||
|
:; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$cat failed!"; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
||||||
|
# and Intltool tags (enclosed in square brackets), and appending a full
|
||||||
|
# relative path to them
|
||||||
|
POTFILES: POTFILES.in
|
||||||
|
( if test 'x$(srcdir)' != 'x.'; then \
|
||||||
|
posrcprefix='$(top_srcdir)/'; \
|
||||||
|
else \
|
||||||
|
posrcprefix="../"; \
|
||||||
|
fi; \
|
||||||
|
rm -f $@-t $@ \
|
||||||
|
&& (sed -e '/^#/d' \
|
||||||
|
-e "s/^\[.*\] +//" \
|
||||||
|
-e '/^[ ]*$$/d' \
|
||||||
|
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||||
|
| sed -e '$$s/\\$$//') > $@-t \
|
||||||
|
&& chmod a-w $@-t \
|
||||||
|
&& mv $@-t $@ )
|
||||||
|
|
||||||
|
Makefile: Makefile.in.in ../config.status POTFILES
|
||||||
|
cd .. \
|
||||||
|
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
||||||
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
.NOEXPORT:
|
||||||
257
po/Makefile.in
Normal file
257
po/Makefile.in
Normal file
@@ -0,0 +1,257 @@
|
|||||||
|
# Makefile for program source directory in GNU NLS utilities package.
|
||||||
|
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
||||||
|
#
|
||||||
|
# This file file be copied and used freely without restrictions. It can
|
||||||
|
# be used in projects which are not available under the GNU Public License
|
||||||
|
# but which still want to provide support for the GNU gettext functionality.
|
||||||
|
# Please note that the actual code is *not* freely available.
|
||||||
|
#
|
||||||
|
# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
|
||||||
|
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
|
||||||
|
#
|
||||||
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
|
||||||
|
GETTEXT_PACKAGE = xfce4-goodiesmanager
|
||||||
|
PACKAGE = xfce4-goodiesmanager
|
||||||
|
VERSION = 0.0.1
|
||||||
|
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
|
||||||
|
srcdir = .
|
||||||
|
top_srcdir = ..
|
||||||
|
top_builddir = ..
|
||||||
|
|
||||||
|
|
||||||
|
prefix = /usr/local
|
||||||
|
exec_prefix = ${prefix}
|
||||||
|
datadir = ${prefix}/share
|
||||||
|
libdir = ${exec_prefix}/lib
|
||||||
|
localedir = $(libdir)/locale
|
||||||
|
gnulocaledir = $(datadir)/locale
|
||||||
|
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
||||||
|
subdir = po
|
||||||
|
install_sh = /home/the_hippie/Projekte/xfce4-goodiesmanager/install-sh
|
||||||
|
mkdir_p = mkdir -p -- .
|
||||||
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
|
|
||||||
|
INSTALL = /usr/bin/install -c
|
||||||
|
INSTALL_DATA = ${INSTALL} -m 644
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
GENCAT = @GENCAT@
|
||||||
|
GMSGFMT = /usr/bin/msgfmt
|
||||||
|
MSGFMT = /usr/bin/msgfmt
|
||||||
|
XGETTEXT_ARGS = --keyword=Q_
|
||||||
|
XGETTEXT = /usr/bin/xgettext $(XGETTEXT_ARGS)
|
||||||
|
INTLTOOL_UPDATE = $(top_builddir)/intltool-update
|
||||||
|
INTLTOOL_EXTRACT = $(top_builddir)/intltool-extract
|
||||||
|
MSGMERGE = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
|
GENPOT = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
|
DEFS = -DHAVE_CONFIG_H
|
||||||
|
CFLAGS = -g -O2
|
||||||
|
CPPFLAGS =
|
||||||
|
|
||||||
|
INCLUDES = -I.. -I$(top_srcdir)/intl
|
||||||
|
|
||||||
|
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||||
|
|
||||||
|
SOURCES =
|
||||||
|
POFILES = de.po
|
||||||
|
GMOFILES = de.gmo
|
||||||
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
||||||
|
$(POFILES) $(GMOFILES) $(SOURCES)
|
||||||
|
|
||||||
|
POTFILES = \
|
||||||
|
|
||||||
|
CATALOGS = de.gmo
|
||||||
|
CATOBJEXT = .gmo
|
||||||
|
INSTOBJEXT = .mo
|
||||||
|
|
||||||
|
.SUFFIXES:
|
||||||
|
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
|
.c.o:
|
||||||
|
$(COMPILE) $<
|
||||||
|
|
||||||
|
.po.pox:
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
||||||
|
|
||||||
|
.po.mo:
|
||||||
|
$(MSGFMT) -o $@ $<
|
||||||
|
|
||||||
|
.po.gmo:
|
||||||
|
file=`echo $* | sed 's,.*/,,'`.gmo \
|
||||||
|
&& rm -f $$file && $(GMSGFMT) -o $$file $<
|
||||||
|
|
||||||
|
.po.cat:
|
||||||
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
|
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
|
all: all-yes
|
||||||
|
|
||||||
|
all-yes: $(CATALOGS)
|
||||||
|
all-no:
|
||||||
|
|
||||||
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
|
$(GENPOT)
|
||||||
|
|
||||||
|
install: install-exec install-data
|
||||||
|
install-exec:
|
||||||
|
install-data: install-data-yes
|
||||||
|
install-data-no: all
|
||||||
|
install-data-yes: all
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
||||||
|
fi
|
||||||
|
@catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
case "$$cat" in \
|
||||||
|
*.gmo) destdir=$(gnulocaledir);; \
|
||||||
|
*) destdir=$(localedir);; \
|
||||||
|
esac; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $$dir; \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
||||||
|
fi; \
|
||||||
|
if test -r $$cat; then \
|
||||||
|
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
||||||
|
else \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
||||||
|
fi; \
|
||||||
|
if test -r $$cat.m; then \
|
||||||
|
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
||||||
|
else \
|
||||||
|
if test -r $(srcdir)/$$cat.m ; then \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
||||||
|
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
||||||
|
else \
|
||||||
|
true; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
if test "$(PACKAGE)" = "glib"; then \
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
||||||
|
fi; \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
||||||
|
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
|
else \
|
||||||
|
: ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
done
|
||||||
|
if test "$(PACKAGE)" = "glib"; then \
|
||||||
|
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
check: all
|
||||||
|
|
||||||
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
mostlyclean:
|
||||||
|
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
|
rm -fr *.o
|
||||||
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
|
clean: mostlyclean
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
||||||
|
|
||||||
|
maintainer-clean: distclean
|
||||||
|
@echo "This command is intended for maintainers to use;"
|
||||||
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
rm -f $(GMOFILES)
|
||||||
|
|
||||||
|
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
||||||
|
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
||||||
|
dists="$(DISTFILES)"; \
|
||||||
|
for file in $$dists; do \
|
||||||
|
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $(srcdir)/$$file $(distdir); \
|
||||||
|
done
|
||||||
|
|
||||||
|
update-po: Makefile
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
tmpdir=`pwd`; \
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
echo "$$lang:"; \
|
||||||
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
|
if $$result; then \
|
||||||
|
if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
else \
|
||||||
|
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
|
||||||
|
:; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$cat failed!"; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
||||||
|
# and Intltool tags (enclosed in square brackets), and appending a full
|
||||||
|
# relative path to them
|
||||||
|
POTFILES: POTFILES.in
|
||||||
|
( if test 'x$(srcdir)' != 'x.'; then \
|
||||||
|
posrcprefix='$(top_srcdir)/'; \
|
||||||
|
else \
|
||||||
|
posrcprefix="../"; \
|
||||||
|
fi; \
|
||||||
|
rm -f $@-t $@ \
|
||||||
|
&& (sed -e '/^#/d' \
|
||||||
|
-e "s/^\[.*\] +//" \
|
||||||
|
-e '/^[ ]*$$/d' \
|
||||||
|
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||||
|
| sed -e '$$s/\\$$//') > $@-t \
|
||||||
|
&& chmod a-w $@-t \
|
||||||
|
&& mv $@-t $@ )
|
||||||
|
|
||||||
|
Makefile: Makefile.in.in ../config.status POTFILES
|
||||||
|
cd .. \
|
||||||
|
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
||||||
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
.NOEXPORT:
|
||||||
257
po/Makefile.in.in
Normal file
257
po/Makefile.in.in
Normal file
@@ -0,0 +1,257 @@
|
|||||||
|
# Makefile for program source directory in GNU NLS utilities package.
|
||||||
|
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
||||||
|
#
|
||||||
|
# This file file be copied and used freely without restrictions. It can
|
||||||
|
# be used in projects which are not available under the GNU Public License
|
||||||
|
# but which still want to provide support for the GNU gettext functionality.
|
||||||
|
# Please note that the actual code is *not* freely available.
|
||||||
|
#
|
||||||
|
# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
|
||||||
|
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
|
||||||
|
#
|
||||||
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
|
||||||
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
|
||||||
|
SHELL = /bin/sh
|
||||||
|
@SET_MAKE@
|
||||||
|
|
||||||
|
srcdir = @srcdir@
|
||||||
|
top_srcdir = @top_srcdir@
|
||||||
|
top_builddir = ..
|
||||||
|
VPATH = @srcdir@
|
||||||
|
|
||||||
|
prefix = @prefix@
|
||||||
|
exec_prefix = @exec_prefix@
|
||||||
|
datadir = @datadir@
|
||||||
|
libdir = @libdir@
|
||||||
|
localedir = $(libdir)/locale
|
||||||
|
gnulocaledir = $(datadir)/locale
|
||||||
|
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
||||||
|
subdir = po
|
||||||
|
install_sh = @install_sh@
|
||||||
|
mkdir_p = @mkdir_p@
|
||||||
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
|
|
||||||
|
INSTALL = @INSTALL@
|
||||||
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
|
CC = @CC@
|
||||||
|
GENCAT = @GENCAT@
|
||||||
|
GMSGFMT = @GMSGFMT@
|
||||||
|
MSGFMT = @MSGFMT@
|
||||||
|
XGETTEXT_ARGS = @XGETTEXT_ARGS@
|
||||||
|
XGETTEXT = @XGETTEXT@ $(XGETTEXT_ARGS)
|
||||||
|
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
|
||||||
|
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
|
||||||
|
MSGMERGE = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
|
GENPOT = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
|
DEFS = @DEFS@
|
||||||
|
CFLAGS = @CFLAGS@
|
||||||
|
CPPFLAGS = @CPPFLAGS@
|
||||||
|
|
||||||
|
INCLUDES = -I.. -I$(top_srcdir)/intl
|
||||||
|
|
||||||
|
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||||
|
|
||||||
|
SOURCES =
|
||||||
|
POFILES = @POFILES@
|
||||||
|
GMOFILES = @GMOFILES@
|
||||||
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
||||||
|
$(POFILES) $(GMOFILES) $(SOURCES)
|
||||||
|
|
||||||
|
POTFILES = \
|
||||||
|
|
||||||
|
CATALOGS = @CATALOGS@
|
||||||
|
CATOBJEXT = @CATOBJEXT@
|
||||||
|
INSTOBJEXT = @INSTOBJEXT@
|
||||||
|
|
||||||
|
.SUFFIXES:
|
||||||
|
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
|
.c.o:
|
||||||
|
$(COMPILE) $<
|
||||||
|
|
||||||
|
.po.pox:
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
||||||
|
|
||||||
|
.po.mo:
|
||||||
|
$(MSGFMT) -o $@ $<
|
||||||
|
|
||||||
|
.po.gmo:
|
||||||
|
file=`echo $* | sed 's,.*/,,'`.gmo \
|
||||||
|
&& rm -f $$file && $(GMSGFMT) -o $$file $<
|
||||||
|
|
||||||
|
.po.cat:
|
||||||
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
|
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
|
all: all-@USE_NLS@
|
||||||
|
|
||||||
|
all-yes: $(CATALOGS)
|
||||||
|
all-no:
|
||||||
|
|
||||||
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
|
$(GENPOT)
|
||||||
|
|
||||||
|
install: install-exec install-data
|
||||||
|
install-exec:
|
||||||
|
install-data: install-data-@USE_NLS@
|
||||||
|
install-data-no: all
|
||||||
|
install-data-yes: all
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
||||||
|
fi
|
||||||
|
@catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
case "$$cat" in \
|
||||||
|
*.gmo) destdir=$(gnulocaledir);; \
|
||||||
|
*) destdir=$(localedir);; \
|
||||||
|
esac; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $$dir; \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
||||||
|
fi; \
|
||||||
|
if test -r $$cat; then \
|
||||||
|
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
||||||
|
else \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
||||||
|
fi; \
|
||||||
|
if test -r $$cat.m; then \
|
||||||
|
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
||||||
|
else \
|
||||||
|
if test -r $(srcdir)/$$cat.m ; then \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
||||||
|
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
||||||
|
else \
|
||||||
|
true; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
if test "$(PACKAGE)" = "glib"; then \
|
||||||
|
if test -n "$(MKINSTALLDIRS)"; then \
|
||||||
|
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
||||||
|
else \
|
||||||
|
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
||||||
|
fi; \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
||||||
|
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
|
else \
|
||||||
|
: ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
||||||
|
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
||||||
|
done
|
||||||
|
if test "$(PACKAGE)" = "glib"; then \
|
||||||
|
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
check: all
|
||||||
|
|
||||||
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
mostlyclean:
|
||||||
|
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
|
rm -fr *.o
|
||||||
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
|
clean: mostlyclean
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
||||||
|
|
||||||
|
maintainer-clean: distclean
|
||||||
|
@echo "This command is intended for maintainers to use;"
|
||||||
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
rm -f $(GMOFILES)
|
||||||
|
|
||||||
|
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
||||||
|
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
||||||
|
dists="$(DISTFILES)"; \
|
||||||
|
for file in $$dists; do \
|
||||||
|
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $(srcdir)/$$file $(distdir); \
|
||||||
|
done
|
||||||
|
|
||||||
|
update-po: Makefile
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
tmpdir=`pwd`; \
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
|
echo "$$lang:"; \
|
||||||
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
|
if $$result; then \
|
||||||
|
if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
else \
|
||||||
|
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
|
||||||
|
:; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$cat failed!"; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
||||||
|
# and Intltool tags (enclosed in square brackets), and appending a full
|
||||||
|
# relative path to them
|
||||||
|
POTFILES: POTFILES.in
|
||||||
|
( if test 'x$(srcdir)' != 'x.'; then \
|
||||||
|
posrcprefix='$(top_srcdir)/'; \
|
||||||
|
else \
|
||||||
|
posrcprefix="../"; \
|
||||||
|
fi; \
|
||||||
|
rm -f $@-t $@ \
|
||||||
|
&& (sed -e '/^#/d' \
|
||||||
|
-e "s/^\[.*\] +//" \
|
||||||
|
-e '/^[ ]*$$/d' \
|
||||||
|
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||||
|
| sed -e '$$s/\\$$//') > $@-t \
|
||||||
|
&& chmod a-w $@-t \
|
||||||
|
&& mv $@-t $@ )
|
||||||
|
|
||||||
|
Makefile: Makefile.in.in ../config.status POTFILES
|
||||||
|
cd .. \
|
||||||
|
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
||||||
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
.NOEXPORT:
|
||||||
4
po/POTFILES
Normal file
4
po/POTFILES
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
../src/callbacks.c \
|
||||||
|
../src/functions.c \
|
||||||
|
../src/interface.c \
|
||||||
|
../src/main.c
|
||||||
4
po/POTFILES.in
Normal file
4
po/POTFILES.in
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
src/callbacks.c
|
||||||
|
src/functions.c
|
||||||
|
src/interface.c
|
||||||
|
src/main.c
|
||||||
77
po/de.po
Normal file
77
po/de.po
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
# Xfce German translation
|
||||||
|
# Copyright (C) 2005 XFce development team
|
||||||
|
# Johannes Zellner <xfce4-taskmanager@nebulon.de>, 2005.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2005-07-03 11:43+0200\n"
|
||||||
|
"Last-Translator: Johannes Zellner <xfce4-taskmanager@nebulon.de>\n"
|
||||||
|
"Language-Team: German <xfce4-dev@xfce.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: ../src/interface.c:41 ../src/interface.c:247
|
||||||
|
msgid "xfce4-taskmanager"
|
||||||
|
msgstr "xfce4-taskmanager"
|
||||||
|
|
||||||
|
#: ../src/interface.c:75
|
||||||
|
msgid "more details"
|
||||||
|
msgstr "Mehr Info"
|
||||||
|
|
||||||
|
#: ../src/interface.c:109
|
||||||
|
msgid "Command"
|
||||||
|
msgstr "Befehl"
|
||||||
|
|
||||||
|
#: ../src/interface.c:115
|
||||||
|
msgid "PID"
|
||||||
|
msgstr "PID"
|
||||||
|
|
||||||
|
#: ../src/interface.c:121
|
||||||
|
msgid "PPID"
|
||||||
|
msgstr "PPID"
|
||||||
|
|
||||||
|
#: ../src/interface.c:127
|
||||||
|
msgid "State"
|
||||||
|
msgstr "Status"
|
||||||
|
|
||||||
|
#: ../src/interface.c:133
|
||||||
|
msgid "VM-Size"
|
||||||
|
msgstr "Speicher"
|
||||||
|
|
||||||
|
#: ../src/interface.c:139
|
||||||
|
msgid "RSS"
|
||||||
|
msgstr "RSS"
|
||||||
|
|
||||||
|
#: ../src/interface.c:145
|
||||||
|
msgid "User"
|
||||||
|
msgstr "Benutzer"
|
||||||
|
|
||||||
|
#: ../src/interface.c:164
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Stop"
|
||||||
|
|
||||||
|
#: ../src/interface.c:168
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr "Fortsetzen"
|
||||||
|
|
||||||
|
#: ../src/interface.c:172
|
||||||
|
msgid "Term"
|
||||||
|
msgstr "Beenden"
|
||||||
|
|
||||||
|
#: ../src/interface.c:176
|
||||||
|
msgid "Kill"
|
||||||
|
msgstr "Kill"
|
||||||
|
|
||||||
|
#: ../src/interface.c:211
|
||||||
|
msgid "Show user tasks"
|
||||||
|
msgstr "Zeige Eigene Prozesse"
|
||||||
|
|
||||||
|
#: ../src/interface.c:216
|
||||||
|
msgid "Show root tasks"
|
||||||
|
msgstr "Zeige System Prozesse"
|
||||||
|
|
||||||
|
#: ../src/interface.c:221
|
||||||
|
msgid "Show other tasks"
|
||||||
|
msgstr "Zeige Andere Prozesse"
|
||||||
80
po/fi.po
Normal file
80
po/fi.po
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
# Xfce4-taskmanager Finnish translation
|
||||||
|
# by Pasi Sulasalmi <psulasasal@paju.oulu.fi>, 2005.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2005-06-30 19:49+0200\n"
|
||||||
|
"PO-Revision-Date: 2005-07-02 21:30+0300\n"
|
||||||
|
"Last-Translator: Pasi Sulasalmi <psulasal@paju.oulu.fi>\n"
|
||||||
|
"Language-Team: Finnish <fi@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=iso-8859-15\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit"
|
||||||
|
|
||||||
|
#: ../src/interface.c:41
|
||||||
|
msgid "xfce4-taskmanager"
|
||||||
|
msgstr "xfce4-taskmanager"
|
||||||
|
|
||||||
|
#: ../src/interface.c:74
|
||||||
|
msgid "more details"
|
||||||
|
msgstr "Lisää tietoja"
|
||||||
|
|
||||||
|
#: ../src/interface.c:108
|
||||||
|
msgid "Command"
|
||||||
|
msgstr "Komento"
|
||||||
|
|
||||||
|
#: ../src/interface.c:114
|
||||||
|
msgid "PID"
|
||||||
|
msgstr "PID"
|
||||||
|
|
||||||
|
#: ../src/interface.c:120
|
||||||
|
msgid "PPID"
|
||||||
|
msgstr "PPID"
|
||||||
|
|
||||||
|
#: ../src/interface.c:126
|
||||||
|
msgid "State"
|
||||||
|
msgstr "Tila"
|
||||||
|
|
||||||
|
#: ../src/interface.c:132
|
||||||
|
msgid "VM-Size"
|
||||||
|
msgstr "VM-Koko"
|
||||||
|
|
||||||
|
#: ../src/interface.c:138
|
||||||
|
msgid "RSS"
|
||||||
|
msgstr "RSS"
|
||||||
|
|
||||||
|
#: ../src/interface.c:144
|
||||||
|
msgid "User"
|
||||||
|
msgstr "Käyttäjä"
|
||||||
|
|
||||||
|
#: ../src/interface.c:163
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Pysäytä"
|
||||||
|
|
||||||
|
#: ../src/interface.c:167
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr "Jatka"
|
||||||
|
|
||||||
|
#: ../src/interface.c:171
|
||||||
|
msgid "Term"
|
||||||
|
msgstr "Lopeta"
|
||||||
|
|
||||||
|
#: ../src/interface.c:175
|
||||||
|
msgid "Kill"
|
||||||
|
msgstr "Tapa"
|
||||||
|
|
||||||
|
#: ../src/interface.c:210
|
||||||
|
msgid "Show user tasks"
|
||||||
|
msgstr "Näytä omat prosessit"
|
||||||
|
|
||||||
|
#: ../src/interface.c:215
|
||||||
|
msgid "Show root tasks"
|
||||||
|
msgstr "Näytä pääkäyttäjän prosessit"
|
||||||
|
|
||||||
|
#: ../src/interface.c:220
|
||||||
|
msgid "Show other tasks"
|
||||||
|
msgstr "Näytä muut prosessit"
|
||||||
|
|
||||||
77
po/xfce4-taskmanager-fr.po
Normal file
77
po/xfce4-taskmanager-fr.po
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
# Xfce French translation
|
||||||
|
# Copyright (C) 2005 XFce development team
|
||||||
|
# Johannes Zellner <xfce4-taskmanager@nebulon.de>, 2005.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 0.3.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2005-08-17\n"
|
||||||
|
"Last-Translator: Peggy Kutyla <peggy.kutyla@laposte.net>\n"
|
||||||
|
"Language-Team: French <xfce4-dev@xfce.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: ../src/interface.c:41
|
||||||
|
msgid "xfce4-taskmanager"
|
||||||
|
msgstr "Gestionnaire de tâches Xfce4"
|
||||||
|
|
||||||
|
#: ../src/interface.c:74
|
||||||
|
msgid "more details"
|
||||||
|
msgstr "Plus de détails"
|
||||||
|
|
||||||
|
#: ../src/interface.c:108
|
||||||
|
msgid "Command"
|
||||||
|
msgstr "Processus"
|
||||||
|
|
||||||
|
#: ../src/interface.c:114
|
||||||
|
msgid "PID"
|
||||||
|
msgstr "PID"
|
||||||
|
|
||||||
|
#: ../src/interface.c:120
|
||||||
|
msgid "PPID"
|
||||||
|
msgstr "PPID"
|
||||||
|
|
||||||
|
#: ../src/interface.c:126
|
||||||
|
msgid "State"
|
||||||
|
msgstr "État"
|
||||||
|
|
||||||
|
#: ../src/interface.c:132
|
||||||
|
msgid "VM-Size"
|
||||||
|
msgstr "Mémoire"
|
||||||
|
|
||||||
|
#: ../src/interface.c:138
|
||||||
|
msgid "RSS"
|
||||||
|
msgstr "RSS"
|
||||||
|
|
||||||
|
#: ../src/interface.c:144
|
||||||
|
msgid "User"
|
||||||
|
msgstr "Utilisateur"
|
||||||
|
|
||||||
|
#: ../src/interface.c:163
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Stop"
|
||||||
|
|
||||||
|
#: ../src/interface.c:167
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr "Continue"
|
||||||
|
|
||||||
|
#: ../src/interface.c:171
|
||||||
|
msgid "Term"
|
||||||
|
msgstr "Terminer"
|
||||||
|
|
||||||
|
#: ../src/interface.c:175
|
||||||
|
msgid "Kill"
|
||||||
|
msgstr "Tuer"
|
||||||
|
|
||||||
|
#: ../src/interface.c:210
|
||||||
|
msgid "Show user tasks"
|
||||||
|
msgstr "Processus utilisateur"
|
||||||
|
|
||||||
|
#: ../src/interface.c:215
|
||||||
|
msgid "Show root tasks"
|
||||||
|
msgstr "Processus système"
|
||||||
|
|
||||||
|
#: ../src/interface.c:220
|
||||||
|
msgid "Show other tasks"
|
||||||
|
msgstr "Autres processus"
|
||||||
81
po/xfce4-taskmanager.pot
Normal file
81
po/xfce4-taskmanager.pot
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2005-07-03 11:43+0200\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: ../src/interface.c:41 ../src/interface.c:247
|
||||||
|
msgid "xfce4-taskmanager"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:75
|
||||||
|
msgid "more details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:109
|
||||||
|
msgid "Command"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:115
|
||||||
|
msgid "PID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:121
|
||||||
|
msgid "PPID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:127
|
||||||
|
msgid "State"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:133
|
||||||
|
msgid "VM-Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:139
|
||||||
|
msgid "RSS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:145
|
||||||
|
msgid "User"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:164
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:168
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:172
|
||||||
|
msgid "Term"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:176
|
||||||
|
msgid "Kill"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:211
|
||||||
|
msgid "Show user tasks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:216
|
||||||
|
msgid "Show root tasks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../src/interface.c:221
|
||||||
|
msgid "Show other tasks"
|
||||||
|
msgstr ""
|
||||||
Reference in New Issue
Block a user