aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-05-18 13:08:20 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-05-18 13:08:20 +0000
commit8cf84288da99ba9d3cd01f7179d3470982794329 (patch)
treea1d1479aab5442a6c24f13028062025acdb4bc16
parentadd560e4e3c55b2481ab7c691be055f3095667a4 (diff)
downloadcflow-8cf84288da99ba9d3cd01f7179d3470982794329.tar.gz
cflow-8cf84288da99ba9d3cd01f7179d3470982794329.tar.bz2
Further update for new gnulib
-rw-r--r--ChangeLog5
-rw-r--r--README-alpha8
-rw-r--r--README-hacking83
-rw-r--r--lib/Makefile.am (renamed from lib/Makefile.tmpl)15
-rw-r--r--po/.cvsignore1
-rw-r--r--po/da.po590
-rw-r--r--po/pl.po592
-rw-r--r--po/uk.po587
-rw-r--r--po/vi.po543
9 files changed, 96 insertions, 2328 deletions
diff --git a/ChangeLog b/ChangeLog
index 0fda28b..a0a5ca1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,2 +7,7 @@
7 * src/main.c: Remove #include <strndup.h> 7 * src/main.c: Remove #include <strndup.h>
8 * po/da.po, po/pl.po, po/uk.po, po/vi.po: Removed. Translations
9 will be exported directly from TP.
10 * lib/Makefile.am: New file
11 * lib/Makefile.tmpl: Removed
12 * README-hacking: New file
8 13
diff --git a/README-alpha b/README-alpha
index 6548cf6..23a2504 100644
--- a/README-alpha
+++ b/README-alpha
@@ -15,3 +15,3 @@ Please, note that the accompanying documentation may be inaccurate or
15incomplete (well, to say the truth it is absent. See TODO for more info). 15incomplete (well, to say the truth it is absent. See TODO for more info).
16The ChangeLog file is the authoritative documentation of all recent changes. 16The ChangeLog file is the authoritative documentation for all recent changes.
17 17
@@ -27,3 +27,3 @@ To checkout the source tree from CVS issue the following command:
27CVS_RSH=ssh \ 27CVS_RSH=ssh \
28 cvs -d :ext:anoncvs@savannah.gnu.org:/cvsroot/cflow checkout cflow 28 cvs -d :ext:anoncvs@cvs.savannah.gnu.org:/cvsroot/cflow checkout cflow
29 29
@@ -36,3 +36,3 @@ The CVS repository is also available via HTTP from
36 36
37 http://savannah.gnu.org/cgi-bin/viewcvs/cflow/cflow/ 37 http://cvs.savannah.gnu.org/cgi-bin/viewcvs/cflow/cflow/
38 38
@@ -90,3 +90,3 @@ Now set your breakpoints and proceed as usual.
90 90
91Copyright (C) 2005 Sergey Poznyakoff 91Copyright (C) 2005, 2007 Sergey Poznyakoff
92 92
diff --git a/README-hacking b/README-hacking
new file mode 100644
index 0000000..2b3e889
--- /dev/null
+++ b/README-hacking
@@ -0,0 +1,83 @@
1These notes intend to help people working on the CVS version of
2this package.
3
4* Requirements
5
6Only the sources are installed in the CVS repository (to ease the
7maintenance, merges etc.), therefore you will have to get the latest
8stable versions of the maintainer tools we depend upon, including:
9
10- Automake <http://www.gnu.org/software/automake/>
11- Autoconf <http://www.gnu.org/software/autoconf/>
12- Gettext <http://www.gnu.org/software/gettext/>
13- Gnulib <http://www.gnu.org/software/gnulib/>
14- M4 <http://www.gnu.org/software/m4/>
15- Texinfo <http://www.gnu.org/software/texinfo>
16- Wget <http://www.gnu.org/software/wget/>
17
18Only building the initial full source tree will be a bit painful,
19later, a plain `cvs update -P && make' should be sufficient.
20
21* First CVS checkout
22
23Obviously, if you are reading these notes, you did manage to check out
24this package from CVS. The next step is to get other files needed to
25build, which are extracted from other source packages:
26
27 $ build-aux/bootstrap
28
29If you already have checked out the gnulib sources, you can speed up
30the process by specifying their location using --gnulib-srcdir command
31line option:
32
33 $ build-aux/bootstrap --gnulib-srcdir=$HOME/gnu/gnulib
34
35If you plan to be hacking on cflow, it is probably that you will need
36to re-run bootstrap from time to time, for example after updating your
37gnulib copy in order to propagate the changes into cflow tree. In
38these case we recommend to store bootstrap options in a file named
39.bootstrap, in the cflow root directory. The format of this file is
40very simple: it contains bootstrap command line options separated by
41any amount of whitespace characters (i.e. spaces, tabs and newlines).
42Any line starting with a comment character `#' is ignored as well as
43are empty lines. For example, if you plan to always use the same gnulib
44directory and to copy gnulib files instead of creating symbolic links
45to them, then your .bootstrap file would contain:
46
47 # Sample .bootstrap file
48 --gnulib-srcdir=$HOME/gnu/gnulib
49 --copy
50
51Once you have bootstrapped the source tree, run:
52
53 $ ./configure
54 $ make
55 $ make check
56
57Enjoy!
58
59-----
60
61Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation,
62Inc.
63
64This program is free software; you can redistribute it and/or modify
65it under the terms of the GNU General Public License as published by
66the Free Software Foundation; either version 2, or (at your option)
67any later version.
68
69This program is distributed in the hope that it will be useful,
70but WITHOUT ANY WARRANTY; without even the implied warranty of
71MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
72GNU General Public License for more details.
73
74You should have received a copy of the GNU General Public License
75along with this program; if not, write to the Free Software
76Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
7702110-1301, USA.
78
79
80Local variables:
81mode: outline
82paragraph-separate: "[ ]*$"
83end:
diff --git a/lib/Makefile.tmpl b/lib/Makefile.am
index adf438a..78ec906 100644
--- a/lib/Makefile.tmpl
+++ b/lib/Makefile.am
@@ -19,14 +19,5 @@
19 19
20noinst_LIBRARIES = libcflow.a 20include gnulib.mk
21noinst_HEADERS = argcv.h
22libcflow_a_SOURCES = argcv.c
23libcflow_a_LIBADD = $(LIBOBJS) $(ALLOCA)
24libcflow_a_DEPENDENCIES = $(libcflow_a_LIBADD)
25AM_CPPFLAGS=
26BUILT_SOURCES =
27EXTRA_DIST = Makefile.tmpl
28MAINTAINERCLEANFILES =
29MOSTLYCLEANFILES =
30lib_OBJECTS = $(libcflow_a_OBJECTS)
31 21
32# gnulib modules 22noinst_HEADERS += argcv.h
23libcflow_a_SOURCES += argcv.c
diff --git a/po/.cvsignore b/po/.cvsignore
index e34e97e..95d22b6 100644
--- a/po/.cvsignore
+++ b/po/.cvsignore
@@ -2,2 +2,3 @@
2*.mo 2*.mo
3*.po
3Makefile 4Makefile
diff --git a/po/da.po b/po/da.po
deleted file mode 100644
index 3a2da6e..0000000
--- a/po/da.po
+++ /dev/null
@@ -1,590 +0,0 @@
1# Danish translations of the cflow message strings
2# Copyright (C) 2005 Free Software Foundation, Inc.
3# Morten Bo Johansen <mojo@mbjnet.dk>, 2005-
4msgid ""
5msgstr ""
6"Project-Id-Version: cflow 1.0\n"
7"Report-Msgid-Bugs-To: bug-cflow@gnu.org\n"
8"POT-Creation-Date: 2006-09-10 15:17+0300\n"
9"PO-Revision-Date: 2005-11-01 00:27+0200\n"
10"Last-Translator: Morten Bo Johansen <mojo@mbjnet.dk>\n"
11"Language-Team: Danish <dansk@klid.dk>\n"
12"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=iso-8859-1\n"
14"Content-Transfer-Encoding: 8bit\n"
15
16#: src/c.l:137
17msgid "unterminated string?"
18msgstr "uafsluttet streng?"
19
20#: src/c.l:296
21#, c-format
22msgid "Command line: %s\n"
23msgstr "Kommandolinje: %s\n"
24
25#: src/c.l:299
26#, c-format
27msgid "cannot execute `%s'"
28msgstr "kan ikke udføre \"%s\""
29
30#: src/c.l:342 src/rc.c:60
31#, c-format
32msgid "cannot open `%s'"
33msgstr "kan ikke åbne \"%s\""
34
35#: src/c.l:422
36#, c-format
37msgid "New location: %s:%d\n"
38msgstr "Ny placering: %s:%d\n"
39
40#: src/main.c:27
41msgid "generate a program flowgraph"
42msgstr ""
43
44#: src/main.c:29
45#, fuzzy
46msgid ""
47"* The effect of each option marked with an asterisk is reversed if the "
48"option's long name is prefixed with `no-'. For example, --no-cpp cancels --"
49"cpp."
50msgstr ""
51"generér en flowgraf for program. * Virkningen af at tilvalg er markeret med "
52"en asterisk er den modsatte hvis tilvalgets lange navn har præfikset \"no-"
53"\". F.eks. --no-cpp annullerer --cpp."
54
55#: src/main.c:56
56msgid "General options:"
57msgstr "Generelle tilvalg:"
58
59#: src/main.c:57 src/main.c:98
60msgid "NUMBER"
61msgstr "ANTAL"
62
63#: src/main.c:58
64msgid "Set the depth at which the flowgraph is cut off"
65msgstr "angiv den dybde hvori flowgrafen skæres af"
66
67#: src/main.c:59
68msgid "CLASSES"
69msgstr "KLASSER"
70
71#: src/main.c:60
72msgid ""
73"Include specified classes of symbols (see below). Prepend CLASSES with ^ or "
74"- to exclude them from the output"
75msgstr ""
76"Medtag de anførte symbolklasser (se nedenfor). Lad KLASSER begynde med ^ "
77"eller - for at fjerne dem fra uddata"
78
79#: src/main.c:61 src/main.c:102 src/main.c:106 lib/argp-parse.c:84
80msgid "NAME"
81msgstr "NAVN"
82
83#: src/main.c:62
84msgid ""
85"Use given output format NAME. Valid names are `gnu' (default) and `posix'"
86msgstr ""
87"Brug det anførte navn for format på uddata: Gyldige navne er \"gnu"
88"\" (standard) og \"posix\""
89
90#: src/main.c:65
91