[ds6-devel] nc6/po ChangeLog,NONE,1.1.2.1 LINGUAS,NONE,1.1.2.1
Makefile.in.in,NONE,1.1.2.1 POTFILES.in,NONE,1.1.2.1
chris at deepspace6.net
chris at deepspace6.net
Sat Jan 11 19:30:46 CET 2003
- Previous message: [ds6-devel] nc6/intl ChangeLog,NONE,1.1.2.1 Makefile.in,NONE,1.1.2.1
VERSION,NONE,1.1.2.1 bindtextdom.c,NONE,1.1.2.1
config.charset,NONE,1.1.2.1 dcgettext.c,NONE,1.1.2.1
dcigettext.c,NONE,1.1.2.1 dcngettext.c,NONE,1.1.2.1
dgettext.c,NONE,1.1.2.1 dngettext.c,NONE,1.1.2.1
explodename.c,NONE,1.1.2.1 finddomain.c,NONE,1.1.2.1
gettext.c,NONE,1.1.2.1 gettext.h,NONE,1.1.2.1
gettextP.h,NONE,1.1.2.1 hash-string.h,NONE,1.1.2.1
intl-compat.c,NONE,1.1.2.1 l10nflist.c,NONE,1.1.2.1
libgettext.h,NONE,1.1.2.1 libgnuintl.h,NONE,1.1.2.1
loadinfo.h,NONE,1.1.2.1 loadmsgcat.c,NONE,1.1.2.1
localcharset.c,NONE,1.1.2.1 locale.alias,NONE,1.1.2.1
localealias.c,NONE,1.1.2.1 ngettext.c,NONE,1.1.2.1
plural.c,NONE,1.1.2.1 plural.y,NONE,1.1.2.1
ref-add.sin,NONE,1.1.2.1 ref-del.sin,NONE,1.1.2.1textdomain.c,NONE,1.1.2.1
- Next message: [ds6-devel] nc6 ABOUT-NLS,NONE,1.1.2.1 Makefile.am,1.11,1.11.4.1
configure.ac,1.13,1.13.4.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvs/nc6/po
Added Files:
Tag: i18n
ChangeLog LINGUAS Makefile.in.in POTFILES.in
Log Message:
Added intl and po directories for gettext. Ideally intl would be in contrib
and po would be called i18n to keep Simone happy ;) but I haven't figured out
how to do this properly yet with the autoconf gettext macros.
--- NEW FILE: ChangeLog ---
2003-01-11 gettextize <bug-gnu-utils at gnu.org>
* Makefile.in.in: Upgrade to gettext-0.10.40.
--- NEW FILE: LINGUAS ---
# Set of available languages
--- NEW FILE: Makefile.in.in ---
# Makefile for program source directory in GNU NLS utilities package.
# Copyright (C) 1995-1997, 2000, 2001 by Ulrich Drepper <drepper at 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.
PACKAGE = @PACKAGE@
VERSION = @VERSION@
# These two variables depend on the location of this directory.
subdir = po
top_builddir = ..
SHELL = /bin/sh
@SET_MAKE@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
datadir = @datadir@
localedir = $(datadir)/locale
gettextsrcdir = $(datadir)/gettext/po
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = @MKINSTALLDIRS@
mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
CC = @CC@
GMSGFMT = @GMSGFMT@
MSGFMT = @MSGFMT@
XGETTEXT = @XGETTEXT@
MSGMERGE = msgmerge
DEFS = @DEFS@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
INCLUDES = -I.. -I$(top_srcdir)/intl
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
POFILES = @POFILES@
GMOFILES = @GMOFILES@
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
$(POFILES) $(GMOFILES)
POTFILES = \
CATALOGS = @CATALOGS@
SUFFIXES:
SUFFIXES: .c .o .po .pox .gmo .mo
c.o:
$(COMPILE) $<
po.pox:
$(MAKE) $(PACKAGE).pot
$(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
po.mo:
$(MSGFMT) -o $@ $<
po.gmo:
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
&& rm -f $$file && $(GMSGFMT) --statistics -o $$file $<
all: all- at USE_NLS@
all-yes: $(CATALOGS)
all-no:
# Note: Target 'all' must not depend on target '$(srcdir)/$(PACKAGE).pot',
# otherwise packages like GCC can not be built if only parts of the source
# have been downloaded.
$(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
--add-comments --keyword=_ --keyword=N_ \
--files-from=$(srcdir)/POTFILES.in \
&& test ! -f $(PACKAGE).po \
|| ( rm -f $(srcdir)/$(PACKAGE).pot \
&& mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
install: install-exec install-data
install-exec:
install-data: install-data- at USE_NLS@
if test "$(PACKAGE)" = "gettext"; then \
$(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
else \
[...96 lines suppressed...]
--- NEW FILE: POTFILES.in ---
src/circ_buf.c
src/connection.c
src/filter.c
src/io_stream.c
src/main.c
src/misc.c
src/network.c
src/parser.c
src/readwrite.c
- Previous message: [ds6-devel] nc6/intl ChangeLog,NONE,1.1.2.1 Makefile.in,NONE,1.1.2.1
VERSION,NONE,1.1.2.1 bindtextdom.c,NONE,1.1.2.1
config.charset,NONE,1.1.2.1 dcgettext.c,NONE,1.1.2.1
dcigettext.c,NONE,1.1.2.1 dcngettext.c,NONE,1.1.2.1
dgettext.c,NONE,1.1.2.1 dngettext.c,NONE,1.1.2.1
explodename.c,NONE,1.1.2.1 finddomain.c,NONE,1.1.2.1
gettext.c,NONE,1.1.2.1 gettext.h,NONE,1.1.2.1
gettextP.h,NONE,1.1.2.1 hash-string.h,NONE,1.1.2.1
intl-compat.c,NONE,1.1.2.1 l10nflist.c,NONE,1.1.2.1
libgettext.h,NONE,1.1.2.1 libgnuintl.h,NONE,1.1.2.1
loadinfo.h,NONE,1.1.2.1 loadmsgcat.c,NONE,1.1.2.1
localcharset.c,NONE,1.1.2.1 locale.alias,NONE,1.1.2.1
localealias.c,NONE,1.1.2.1 ngettext.c,NONE,1.1.2.1
plural.c,NONE,1.1.2.1 plural.y,NONE,1.1.2.1
ref-add.sin,NONE,1.1.2.1 ref-del.sin,NONE,1.1.2.1textdomain.c,NONE,1.1.2.1
- Next message: [ds6-devel] nc6 ABOUT-NLS,NONE,1.1.2.1 Makefile.am,1.11,1.11.4.1
configure.ac,1.13,1.13.4.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ds6-devel
mailing list