Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (43a902b3c44f8c2cb664a3a0ab10d21a68a44b54)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (43a902b3c44f8c2cb664a3a0ab10d21a68a44b54)
  • Date: Sat, 17 Feb 2007 00:08:56 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

libs/gettext/BUILD | 2 +-
libs/gettext/CONFIGURE | 5 -----
libs/gettext/DEPENDS | 7 ++++---
libs/gettext/HISTORY | 5 +++++
libs/gettext/INSTALL | 2 +-
5 files changed, 11 insertions(+), 10 deletions(-)

New commits:
commit 43a902b3c44f8c2cb664a3a0ab10d21a68a44b54
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

gettext now optionally depends on tetex when building documentation

diff --git a/libs/gettext/BUILD b/libs/gettext/BUILD
index ef7e459..8892a80 100755
--- a/libs/gettext/BUILD
+++ b/libs/gettext/BUILD
@@ -17,7 +17,7 @@ make_single &&

make &&

-if [ "$GETTEXT_TETEX" == "y" ]; then
+if is_depends_enabled tetex; then
cd gettext-tools/doc &&
make dvi &&
make ps &&
diff --git a/libs/gettext/CONFIGURE b/libs/gettext/CONFIGURE
index 0cbf6ea..e69de29 100755
--- a/libs/gettext/CONFIGURE
+++ b/libs/gettext/CONFIGURE
@@ -1,5 +0,0 @@
-if spell_ok tetex; then
- config_query GETTEXT_TETEX "Build .ps, .pdf and .dvi documentation?" y
-else
- config_query GETTEXT_TETEX "Build .ps, .pdf and .dvi documentation?" n
-fi
diff --git a/libs/gettext/DEPENDS b/libs/gettext/DEPENDS
index f599b3c..1e7e3c1 100755
--- a/libs/gettext/DEPENDS
+++ b/libs/gettext/DEPENDS
@@ -12,6 +12,7 @@ optional_depends CSHARP \
"--disable-csharp" \
" for C# bindings" &&

-if [ "$GETTEXT_TETEX" == "y" ]; then
- depends tetex
-fi
+optional_depends tetex \
+ '' \
+ '' \
+ 'to build .ps, .pdf and .dvi documentation'
diff --git a/libs/gettext/HISTORY b/libs/gettext/HISTORY
index bec8653..be41375 100644
--- a/libs/gettext/HISTORY
+++ b/libs/gettext/HISTORY
@@ -1,3 +1,8 @@
+2007-02-16 Eric Sandall <eric AT sandall.us>
+ * CONFIGURE: Removed tetex query, now handled by optional_depends
+ * DEPENDS: Properly optionally depend on tetex
+ * BUILD,INSTALL: Use is_depends_enabled to check for tetex
+
2006-11-28 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 0.16.1

diff --git a/libs/gettext/INSTALL b/libs/gettext/INSTALL
index 770afb7..39d67d1 100755
--- a/libs/gettext/INSTALL
+++ b/libs/gettext/INSTALL
@@ -20,7 +20,7 @@ else
rm -f ${INSTALL_ROOT}/usr/local/include/autosprintf.h
fi &&

-if [ "$GETTEXT_TETEX" == "y" ]; then
+if is_depends_enabled tetex; then
cd gettext-tools/doc &&
make install-pdf DESTDIR=$INSTALL_ROOT &&
make install-ps DESTDIR=$INSTALL_ROOT &&




Archive powered by MHonArc 2.6.24.

Top of Page