summaryrefslogtreecommitdiffstats
path: root/i18n/m17n-lib
diff options
context:
space:
mode:
authorJustin Boffemmyer2008-10-30 14:29:54 -0400
committerJustin Boffemmyer2008-10-30 14:29:54 -0400
commit9003c8b18578b1a37dee77c804df31195f57e260 (patch)
treed0e64d8223a32210750a236933bef5bd4e884907 /i18n/m17n-lib
parent6a34090cdd50dbb64d2750ce0f48fa4cc10a0d4b (diff)
i18n/m17n-lib: new spell, multilingualization lib
A multilingualization library capable of displaying/inputting a *lot* of languages.
Diffstat (limited to 'i18n/m17n-lib')
-rwxr-xr-xi18n/m17n-lib/BUILD2
-rwxr-xr-xi18n/m17n-lib/CONFIGURE4
-rwxr-xr-xi18n/m17n-lib/DEPENDS34
-rwxr-xr-xi18n/m17n-lib/DETAILS28
-rw-r--r--i18n/m17n-lib/HISTORY3
5 files changed, 71 insertions, 0 deletions
diff --git a/i18n/m17n-lib/BUILD b/i18n/m17n-lib/BUILD
new file mode 100755
index 0000000000..503ef73b7a
--- /dev/null
+++ b/i18n/m17n-lib/BUILD
@@ -0,0 +1,2 @@
+OPTS="$M17NOPTS $OPTS" &&
+default_build
diff --git a/i18n/m17n-lib/CONFIGURE b/i18n/m17n-lib/CONFIGURE
new file mode 100755
index 0000000000..bba55b7502
--- /dev/null
+++ b/i18n/m17n-lib/CONFIGURE
@@ -0,0 +1,4 @@
+config_query_option M17NOPTS "Build GUI APIs?" \
+ y \
+ "--with-gui" \
+ "--without-gui"
diff --git a/i18n/m17n-lib/DEPENDS b/i18n/m17n-lib/DEPENDS
new file mode 100755
index 0000000000..b6192dc3f1
--- /dev/null
+++ b/i18n/m17n-lib/DEPENDS
@@ -0,0 +1,34 @@
+depends libxml2 &&
+depends fribidi &&
+depends freetype2 &&
+
+suggest_depends m17n-db \
+ "" \
+ "" \
+ "supplies input methods, character maps, etc. for m17n-lib"
+
+optional_depends gd \
+ "--with-gd" \
+ "--without-gd" \
+ "support graphical devices using gd" &&
+
+optional_depends fontconfig \
+ "--with-fontconfig" \
+ "--without-fontconfig" \
+ "use fontconfig library" &&
+
+optional_depends anthy \
+ "--with-anthy" \
+ "--without-anthy" \
+ "anthy input support" &&
+
+# The following does not yet exist as a spell
+#optional_depends libotf \
+# "--with-libotf" \
+# "--without-libotf" \
+# "OpenType font support" &&
+
+optional_depends -sub libxft X11-SERVER \
+ "--with-x" \
+ "--without-x" \
+ "X windows and Xft support"
diff --git a/i18n/m17n-lib/DETAILS b/i18n/m17n-lib/DETAILS
new file mode 100755
index 0000000000..c1b3cc9d74
--- /dev/null
+++ b/i18n/m17n-lib/DETAILS
@@ -0,0 +1,28 @@
+ SPELL=m17n-lib
+ VERSION=1.5.3
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]="http://www.m17n.org/m17n-lib-download/${SOURCE}"
+ SOURCE_HASH=sha512:3aa0232e5fcb7986718875f98248056a91c20509dc3745484edd1e357c1992cb91a94a86497d04e88e20589d737c0c92ac327f87b57ec41f9bff08cafabd42f9
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://www.m17n.org/m17n-lib-en/"
+ LICENSE[0]=GPL
+ ENTERED=20081029
+ SHORT="The multilingualization library"
+cat << EOF
+m17n-lib currently supports displaying 30 different writing scripts,
+or 169 different languages. It also supports inputting 66 different
+languages (170 if you count inputting by numerical code-point).
+Specifically:
+
+* The m17n library is an open source software.
+* The m17n library is for any Linux/Unix applications.
+* The m17n library realizes multilingualization of many aspects of
+applications.
+* The m17n library represents multilingual text as an object named
+M-text.  M-text is a string with attributes called text properties,
+and designed to substitute for string in C. Text properties carry any
+information required to input, display and edit the text.
+* The m17n library supports functions to handle M-texts.
+
+m17n is an abbreviation of Multilingualization.
+EOF
diff --git a/i18n/m17n-lib/HISTORY b/i18n/m17n-lib/HISTORY
new file mode 100644
index 0000000000..eee92e6cae
--- /dev/null
+++ b/i18n/m17n-lib/HISTORY
@@ -0,0 +1,3 @@
+2008-10-29 Justin Boffemmyer <flux@sourcemage.org>
+ * BUILD, CONFIGURE, DEPENDS, DETAILS, HISTORY: spell created
+