aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2010-03-06 15:55:17 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2010-03-06 15:55:17 +0200
commit6e2269bce3e0104fbc6cbf62ca8107ec437d77f9 (patch)
tree28032b06e83414c5da707b101534ca2b33d82e5b
parentc8ec138afb7dfe52c96b7bd4e6321a5a03aca449 (diff)
downloadgamma-6e2269bce3e0104fbc6cbf62ca8107ec437d77f9.tar.gz
gamma-6e2269bce3e0104fbc6cbf62ca8107ec437d77f9.tar.bz2
Remove po.
* po/: Remove. * Makefile.am (SUBDIRS): Remove po. * README: Update. * configure.ac: Version 1.99 Remove gettext requirement.
-rw-r--r--Makefile.am2
-rw-r--r--README10
-rw-r--r--configure.ac16
-rw-r--r--po/.gitignore14
-rw-r--r--po/LINGUAS1
-rw-r--r--po/Makevars17
-rw-r--r--po/POTFILES.in0
-rw-r--r--po/gamma.pot14
8 files changed, 4 insertions, 70 deletions
diff --git a/Makefile.am b/Makefile.am
index 77df972..fc6a79b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,7 +11,7 @@
ACLOCAL_AMFLAGS = -I m4 -I am
-SUBDIRS = src scripts examples po
+SUBDIRS = src scripts examples
# Define the following variables in order to use the ChangeLog rule below:
# prev_change_log [optional] Name of the previous ChangeLog file.
diff --git a/README b/README
index a970df4..4e99fea 100644
--- a/README
+++ b/README
@@ -3,23 +3,13 @@ GAMMA = Guile Archive of Multiple Modules with 'A' just for the 'A' of it.
It is a set of possibly useful modules. Currently it includes
* interfaces for two SQL DBMS: MySQL and PostgreSQL
-* support for gettext
Both are extensively used by Ellinika (http://ellinika.farlep.net)
and Runasimi (http://www.runasimi.org).
-As far as I can tell from the current state of Guile CVS repository
-and discussions at guile-devel@gnu.org, Guile version 1.8 will
-include gettext support. However, until then I'll have to provide
-my own version.
-
Please see the INSTALL file in this directory for the generic instructions
on how to use configure. The list of GAMMA-specific options follows:
-* --disable-nls
-
-Do not compile gettext support
-
* --without-mysql
Configure to work without MySQL
diff --git a/configure.ac b/configure.ac
index 7f1ee3b..136b933 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl This file is part of Gamma
-dnl Copyright (C) 2002, 2004, 2007 Sergey Poznyakoff
+dnl Copyright (C) 2002, 2004, 2007, 2010 Sergey Poznyakoff
dnl
dnl This program is free software; you can redistribute it and/or modify it
dnl under the terms of the GNU General Public License as published by the
@@ -18,7 +18,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT(gamma, 1.1, [gray@gnu.org.ua])
+AC_INIT(gamma, 1.99, [gray@gnu.org.ua])
AC_CONFIG_SRCDIR(src/guile-sql.h)
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
@@ -58,14 +58,8 @@ AC_MSG_RESULT($LIBS)
dnl Checks for libraries.
MU_CHECK_GUILE
-dnl Checks for gettext
-AC_CHECK_HEADERS(locale.h)
-AM_GNU_GETTEXT(external, need-ngettext)
-AM_GNU_GETTEXT_VERSION(0.13)
-
dnl Checks for library functions.
AC_HEADER_STDC
-AC_CHECK_FUNCS(strdup)
if test $mu_cv_lib_guile = yes; then
MYSQL=yes
@@ -114,10 +108,6 @@ if test $mu_cv_lib_guile = yes; then
fi
fi
-if test x"$USE_NLS" != x; then
- BUILD_DATA="$BUILD_DATA \$(SCM_GETTEXT)"
-fi
-
if test x"$BUILD_LIBS" = x; then
AC_MSG_ERROR([Nothing to build!])
fi
@@ -127,6 +117,6 @@ AC_SUBST(BUILD_DATA)
AC_SUBST(BUILD_X)
AC_SUBST(INSTALL_HOOKS)
-AC_CONFIG_FILES(Makefile src/Makefile scripts/Makefile examples/Makefile po/Makefile.in)
+AC_CONFIG_FILES(Makefile src/Makefile scripts/Makefile examples/Makefile)
AC_OUTPUT
diff --git a/po/.gitignore b/po/.gitignore
deleted file mode 100644
index 1ce9065..0000000
--- a/po/.gitignore
+++ /dev/null
@@ -1,14 +0,0 @@
-Makefile.in.in
-Makevars.template
-Rules-quot
-boldquot.sed
-en@boldquot.header
-en@quot.header
-insert-header.sin
-quot.sed
-remove-potcdate.sin
-Makefile.in
-POTFILES
-Makefile
-remove-potcdate.sed
-stamp-po
diff --git a/po/LINGUAS b/po/LINGUAS
deleted file mode 100644
index 1b993bd..0000000
--- a/po/LINGUAS
+++ /dev/null
@@ -1 +0,0 @@
-# No MSGIDS are available in the project, so no languages are defined
diff --git a/po/Makevars b/po/Makevars
deleted file mode 100644
index b7ea2ff..0000000
--- a/po/Makevars
+++ /dev/null
@@ -1,17 +0,0 @@
-# Makefile variables for Guile gettext
-
-# Usually the message domain is the same as the package name.
-DOMAIN = $(PACKAGE)
-
-# These two variables depend on the location of this directory.
-subdir = po
-top_builddir = ..
-
-# These options get passed to xgettext.
-XGETTEXT_OPTIONS = --language=Lisp --keyword=_ --keyword=N_
-
-COPYRIGHT_HOLDER = Sergey Poznyakoff
-
-MSGID_BUGS_ADDRESS = gray@gnu.org
-
-EXTRA_LOCALE_CATEGORIES =
diff --git a/po/POTFILES.in b/po/POTFILES.in
deleted file mode 100644
index e69de29..0000000
--- a/po/POTFILES.in
+++ /dev/null
diff --git a/po/gamma.pot b/po/gamma.pot
deleted file mode 100644
index 4a8c3f4..0000000
--- a/po/gamma.pot
+++ /dev/null
@@ -1,14 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2004-10-10 13:59+0300\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"

Return to:

Send suggestions and report system problems to the System administrator.