aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2008-06-22 07:33:31 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2008-06-22 07:33:31 +0000
commit4eb48d2f187bc9bb3266cee025da2ea61270e4c4 (patch)
treea99c057485f72d9074d22ea518804a4c8d2eb5bb
parent64af4748a2cae68c7ff4aa48d3dc7c93a2d469f6 (diff)
downloadellinika-4eb48d2f187bc9bb3266cee025da2ea61270e4c4.tar.gz
ellinika-4eb48d2f187bc9bb3266cee025da2ea61270e4c4.tar.bz2
Move cgi-bin and ellinika to src.
* src: New dir * src/Makefile.am: New file. * cgi-bin, ellinika: Move to src. * configure.ac: Reflect the above changes. git-svn-id: file:///home/puszcza/svnroot/ellinika/trunk@525 941c8c0f-9102-463b-b60b-cd22ce0e6858
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac11
-rw-r--r--src/Makefile.am17
-rw-r--r--src/cgi-bin/Makefile.am (renamed from cgi-bin/Makefile.am)0
-rw-r--r--src/cgi-bin/dict.scm4 (renamed from cgi-bin/dict.scm4)0
-rw-r--r--src/cgi-bin/nea.scm4 (renamed from cgi-bin/nea.scm4)0
-rw-r--r--src/ellinika/Makefile.am (renamed from ellinika/Makefile.am)0
-rw-r--r--src/ellinika/cgi.scm4 (renamed from ellinika/cgi.scm4)0
-rw-r--r--src/ellinika/config.scm4 (renamed from ellinika/config.scm4)0
-rw-r--r--src/ellinika/dico.scm (renamed from ellinika/dico.scm)0
-rw-r--r--src/ellinika/i18n.scm (renamed from ellinika/i18n.scm)0
-rw-r--r--src/ellinika/xlat.scm (renamed from ellinika/xlat.scm)0
13 files changed, 30 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 75c993e..ee82c7e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2008-06-22 Sergey Poznyakoff <gray@gnu.org.ua>
+ * src: New dir
+ * src/Makefile.am: New file.
+ * cgi-bin, ellinika: Move to src.
+ * configure.ac: Reflect the above changes.
+
* ellinika/i18n.scm (_): New syntax.
* cgi-bin/dict.scm4 (gamma gettext): Remove.
Use (ellinika i18n).
diff --git a/Makefile.am b/Makefile.am
index 9f08e82..6e3a25a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of Ellinika project.
-# Copyright (C) 2004, 2007 Sergey Poznyakoff
+# Copyright (C) 2004, 2007, 2008 Sergey Poznyakoff
#
# Ellinika is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
AUTOMAKE_OPTIONS = gnits 1.8
ACLOCAL_AMFLAGS = -I m4
-SUBDIRS=cgi-bin elisp data ellinika scm xml po
+SUBDIRS=src elisp data scm xml po
htmldir = $(HTMLDIR)
diff --git a/configure.ac b/configure.ac
index c4d2ee3..0f11ede 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# This file is part of Ellinika -*- autoconf -*-
-# Copyright (C) 2004, 2005, 2007 Sergey Poznyakoff
+# Copyright (C) 2004, 2005, 2007, 2008 Sergey Poznyakoff
#
# Ellinika is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@ AC_PREREQ(2.59)
AC_REVISION($Revision$)
AC_INIT(ellinika, 1.2, [gray@gnu.org.ua])
-AC_CONFIG_SRCDIR(cgi-bin/dict.scm4)
+AC_CONFIG_SRCDIR(src/cgi-bin/dict.scm4)
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(no-exeext)
@@ -110,13 +110,14 @@ AC_SUBST(AUTOGENERATED,
AC_CONFIG_FILES(Makefile
.htaccess
- cgi-bin/Makefile
+ src/Makefile
+ src/cgi-bin/Makefile
+ src/ellinika/Makefile
elisp/Makefile
+ scm/Makefile
data/Makefile
data/pl/Makefile
data/ru/Makefile
- scm/Makefile
- ellinika/Makefile
xml/Makefile
xml/pl/Makefile
xml/ru/Makefile
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..31223e7
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,17 @@
+# This file is part of Ellinika project.
+# Copyright (C) 2008 Sergey Poznyakoff
+#
+# Ellinika is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# Ellinika is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+SUBDIRS=cgi-bin ellinika \ No newline at end of file
diff --git a/cgi-bin/Makefile.am b/src/cgi-bin/Makefile.am
index bb90eed..bb90eed 100644
--- a/cgi-bin/Makefile.am
+++ b/src/cgi-bin/Makefile.am
diff --git a/cgi-bin/dict.scm4 b/src/cgi-bin/dict.scm4
index c9f895b..c9f895b 100644
--- a/cgi-bin/dict.scm4
+++ b/src/cgi-bin/dict.scm4
diff --git a/cgi-bin/nea.scm4 b/src/cgi-bin/nea.scm4
index e490a59..e490a59 100644
--- a/cgi-bin/nea.scm4
+++ b/src/cgi-bin/nea.scm4
diff --git a/ellinika/Makefile.am b/src/ellinika/Makefile.am
index 136b44f..136b44f 100644
--- a/ellinika/Makefile.am
+++ b/src/ellinika/Makefile.am
diff --git a/ellinika/cgi.scm4 b/src/ellinika/cgi.scm4
index 38fd3de..38fd3de 100644
--- a/ellinika/cgi.scm4
+++ b/src/ellinika/cgi.scm4
diff --git a/ellinika/config.scm4 b/src/ellinika/config.scm4
index 8032409..8032409 100644
--- a/ellinika/config.scm4
+++ b/src/ellinika/config.scm4
diff --git a/ellinika/dico.scm b/src/ellinika/dico.scm
index 9383d1f..9383d1f 100644
--- a/ellinika/dico.scm
+++ b/src/ellinika/dico.scm
diff --git a/ellinika/i18n.scm b/src/ellinika/i18n.scm
index 474c8c9..474c8c9 100644
--- a/ellinika/i18n.scm
+++ b/src/ellinika/i18n.scm
diff --git a/ellinika/xlat.scm b/src/ellinika/xlat.scm
index c51edaa..c51edaa 100644
--- a/ellinika/xlat.scm
+++ b/src/ellinika/xlat.scm

Return to:

Send suggestions and report system problems to the System administrator.