aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-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, 97 insertions, 2329 deletions
diff --git a/ChangeLog b/ChangeLog
index 0fda28b..a0a5ca1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,13 +2,18 @@
2 2
3 * bootstrap.conf: New file 3 * bootstrap.conf: New file
4 * build-aux/bootstrap: Replaced from the gnulib CVS 4 * build-aux/bootstrap: Replaced from the gnulib CVS
5 * configure.ac: Update 5 * configure.ac: Update
6 * po/Makevars: Remove automatically generated file 6 * po/Makevars: Remove automatically generated file
7 * src/main.c: Remove #include <strndup.h> 7 * src/main.c: Remove #include <strndup.h>
8 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
13
92006-09-11 Sergey Poznyakoff <gray@gnu.org.ua> 142006-09-11 Sergey Poznyakoff <gray@gnu.org.ua>
10 15
11 * src/main.c (doc): Reformat argp docstring in accordance with the 16 * src/main.c (doc): Reformat argp docstring in accordance with the
12 new argp guidelines. Remove unneeded translators comment. 17 new argp guidelines. Remove unneeded translators comment.
13 (main): Set program_name. 18 (main): Set program_name.
14 19
diff --git a/README-alpha b/README-alpha
index 6548cf6..23a2504 100644
--- a/README-alpha
+++ b/README-alpha
@@ -10,34 +10,34 @@ autoconf installed to bootstrap the package. See the chapter `Building' for
10the detailed instructions. After bootstrapping, there should be a file 10the detailed instructions. After bootstrapping, there should be a file
11'INSTALL' with generic installation instructions. Package-specific 11'INSTALL' with generic installation instructions. Package-specific
12installation instructions are set forth in the file README. 12installation instructions are set forth in the file README.
13 13
14Please, note that the accompanying documentation may be inaccurate or 14Please, 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
18Report bugs to <bug-cflow@gnu.org> 18Report bugs to <bug-cflow@gnu.org>
19 19
20* Checking Out the Sources 20* Checking Out the Sources
21 21
22The following instructions apply if you wish to obtain sources from 22The following instructions apply if you wish to obtain sources from
23the CVS repository: 23the CVS repository:
24 24
25To checkout the source tree from CVS issue the following command: 25To checkout the source tree from CVS issue the following command:
26 26
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
30Make sure SSHv2 is used. 30Make sure SSHv2 is used.
31 31
32This will give you read-only access. If you think you need write access, 32This will give you read-only access. If you think you need write access,
33contact the mailing list. 33contact the mailing list.
34 34
35The CVS repository is also available via HTTP from 35The 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
39* Building 39* Building
40 40
41If you have taken the sources from CVS you will need the following 41If you have taken the sources from CVS you will need the following
42packages to build cflow. I don't make any extra effort to accommodate 42packages to build cflow. I don't make any extra effort to accommodate
43older versions of these packages, so please make sure that you have the 43older versions of these packages, so please make sure that you have the
@@ -85,13 +85,13 @@ Once in gdb, issue the following command
85 set _argp_hang=0 85 set _argp_hang=0
86 86
87Now set your breakpoints and proceed as usual. 87Now set your breakpoints and proceed as usual.
88 88
89* Copyright information: 89* Copyright information:
90 90
91Copyright (C) 2005 Sergey Poznyakoff 91Copyright (C) 2005, 2007 Sergey Poznyakoff
92 92
93 Permission is granted to anyone to make or distribute verbatim copies 93 Permission is granted to anyone to make or distribute verbatim copies
94 of this document as received, in any medium, provided that the 94 of this document as received, in any medium, provided that the
95 copyright notice and this permission notice are preserved, 95 copyright notice and this permission notice are preserved,
96 thus giving the recipient permission to redistribute in turn. 96 thus giving the recipient permission to redistribute in turn.
97 97
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
@@ -14,19 +14,10 @@
14 14
15## You should have received a copy of the GNU General Public License 15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software 16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18## 02110-1301, USA. 18## 02110-1301, USA.
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
@@ -1,8 +1,9 @@
1*.gmo 1*.gmo
2*.mo 2*.mo
3*.po
3Makefile 4Makefile
4Makefile.in 5Makefile.in
5Makefile.in.in 6Makefile.in.in
6Makevars.template 7Makevars.template
7POTFILES 8POTFILES
8Rules-quot 9Rules-quot
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"