update
svn: r2680
This commit is contained in:
parent
b90dafd701
commit
4cdab27d00
@ -1,3 +1,11 @@
|
|||||||
|
2004-01-20 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
|
* src/const.py.in: handle new translation table class
|
||||||
|
* src/NameEdit.py.in: handle new translation table class
|
||||||
|
* src/EditPerson.py.in: handle new translation table class
|
||||||
|
* src/TransTable.py: new Translation table class
|
||||||
|
* src/GenericFilter.py: handle translated rule names
|
||||||
|
* src/plugins/FilterEditor.py: handle translated rule names
|
||||||
|
|
||||||
2004-01-20 Alex Roitman <shura@alex.neuro.umn.edu>
|
2004-01-20 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
* doc/gramps.1.in, doc/gramps.1: Update.
|
* doc/gramps.1.in, doc/gramps.1: Update.
|
||||||
* doc/gramps-manual/C/gramps-manual.xml: Update.
|
* doc/gramps-manual/C/gramps-manual.xml: Update.
|
||||||
|
3
gramps2/configure
vendored
3
gramps2/configure
vendored
@ -3367,7 +3367,7 @@ SCROLLKEEPER_BUILD_REQUIRED=0.3.5
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
ac_config_files="$ac_config_files Makefile src/Makefile src/const.py src/docgen/Makefile src/filters/Makefile src/plugins/Makefile src/calendars/Makefile src/data/Makefile src/data/templates/Makefile src/po/Makefile doc/Makefile doc/gramps-manual/Makefile doc/gramps-manual/C/Makefile doc/gramps-manual/fr/Makefile doc/gramps-manual/de/Makefile doc/gramps-manual/ru/Makefile example/Makefile example/gramps/Makefile gramps.spec gramps.sh"
|
ac_config_files="$ac_config_files Makefile src/Makefile src/const.py src/docgen/Makefile src/filters/Makefile src/plugins/Makefile src/calendars/Makefile src/data/Makefile src/data/templates/Makefile src/po/Makefile doc/Makefile doc/gramps-manual/Makefile doc/gramps-manual/C/Makefile doc/gramps-manual/fr/Makefile doc/gramps-manual/de/Makefile doc/gramps-manual/ru/Makefile doc/gramps-manual/hu/Makefile example/Makefile example/gramps/Makefile gramps.spec gramps.sh"
|
||||||
|
|
||||||
cat >confcache <<\_ACEOF
|
cat >confcache <<\_ACEOF
|
||||||
# This file is a shell script that caches the results of configure
|
# This file is a shell script that caches the results of configure
|
||||||
@ -3959,6 +3959,7 @@ do
|
|||||||
"doc/gramps-manual/fr/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/fr/Makefile" ;;
|
"doc/gramps-manual/fr/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/fr/Makefile" ;;
|
||||||
"doc/gramps-manual/de/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/de/Makefile" ;;
|
"doc/gramps-manual/de/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/de/Makefile" ;;
|
||||||
"doc/gramps-manual/ru/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/ru/Makefile" ;;
|
"doc/gramps-manual/ru/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/ru/Makefile" ;;
|
||||||
|
"doc/gramps-manual/hu/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/hu/Makefile" ;;
|
||||||
"example/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/Makefile" ;;
|
"example/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/Makefile" ;;
|
||||||
"example/gramps/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/gramps/Makefile" ;;
|
"example/gramps/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/gramps/Makefile" ;;
|
||||||
"gramps.spec" ) CONFIG_FILES="$CONFIG_FILES gramps.spec" ;;
|
"gramps.spec" ) CONFIG_FILES="$CONFIG_FILES gramps.spec" ;;
|
||||||
|
@ -131,7 +131,7 @@ sharedstatedir = @sharedstatedir@
|
|||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
target_alias = @target_alias@
|
target_alias = @target_alias@
|
||||||
|
|
||||||
SUBDIRS = C fr de ru
|
SUBDIRS = C fr de ru hu
|
||||||
subdir = doc/gramps-manual
|
subdir = doc/gramps-manual
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
%define ver 1.0.0
|
%define ver 1.0.0
|
||||||
%define rel 0.CVS20040110
|
%define rel 0.CVS20040120
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
%define localstatedir /var/lib
|
%define localstatedir /var/lib
|
||||||
# Ensure that internal RPM macros for configure & makeinstall
|
# Ensure that internal RPM macros for configure & makeinstall
|
||||||
|
@ -85,6 +85,7 @@ pkgpython_PYTHON = \
|
|||||||
StyleEditor.py\
|
StyleEditor.py\
|
||||||
SubstKeywords.py\
|
SubstKeywords.py\
|
||||||
TarFile.py\
|
TarFile.py\
|
||||||
|
TransTable.py\
|
||||||
UrlEdit.py\
|
UrlEdit.py\
|
||||||
Utils.py\
|
Utils.py\
|
||||||
VersionControl.py\
|
VersionControl.py\
|
||||||
|
@ -214,6 +214,7 @@ pkgpython_PYTHON = \
|
|||||||
StyleEditor.py\
|
StyleEditor.py\
|
||||||
SubstKeywords.py\
|
SubstKeywords.py\
|
||||||
TarFile.py\
|
TarFile.py\
|
||||||
|
TransTable.py\
|
||||||
UrlEdit.py\
|
UrlEdit.py\
|
||||||
Utils.py\
|
Utils.py\
|
||||||
VersionControl.py\
|
VersionControl.py\
|
||||||
|
@ -137,6 +137,7 @@ target_alias = @target_alias@
|
|||||||
# If not using GNU make, then list all .py files individually
|
# If not using GNU make, then list all .py files individually
|
||||||
pkgpython_PYTHON = \
|
pkgpython_PYTHON = \
|
||||||
AncestorChart.py\
|
AncestorChart.py\
|
||||||
|
AncestorChart2.py\
|
||||||
AncestorReport.py\
|
AncestorReport.py\
|
||||||
Ancestors.py\
|
Ancestors.py\
|
||||||
BookReport.py\
|
BookReport.py\
|
||||||
|
Loading…
Reference in New Issue
Block a user