New files.
authortomo <tomo>
Mon, 7 Dec 2009 00:27:37 +0000 (00:27 +0000)
committertomo <tomo>
Mon, 7 Dec 2009 00:27:37 +0000 (00:27 +0000)
Makefile.in [new file with mode: 0644]
configure.in [new file with mode: 0644]

diff --git a/Makefile.in b/Makefile.in
new file mode 100644 (file)
index 0000000..ea989bf
--- /dev/null
@@ -0,0 +1,37 @@
+VERSION = @PACKAGE_VERSION@
+
+TAR    = tar
+WGET   = wget
+SUDO   = 
+
+prefix         = @prefix@
+exec_prefix    = @exec_prefix@
+BINDIR         = @bindir@
+LIBDIR         = @libdir@
+OPTS           = @ac_configure_args@
+
+
+all:   build-intlfonts build-gt
+
+install:       install-intlfonts install-gt
+
+
+build-intlfonts:       intlfonts-1.2.1/config.log
+       cd intlfonts-1.2.1 && make
+
+intlfonts-1.2.1/config.log:    intlfonts-1.2.1.tar.gz
+       $(TAR) xvzf intlfonts-1.2.1.tar.gz
+       cd intlfonts-1.2.1 && ./configure $(OPTS)
+
+intlfonts-1.2.1.tar.gz:
+       $(WGET) http://ftp.gnu.org/gnu/intlfonts/intlfonts-1.2.1.tar.gz
+
+install-intlfonts:
+       cd intlfonts-1.2.1 && make install
+
+
+build-gt:
+       cd GT && make all
+
+install-gt:
+       cd GT && make install
diff --git a/configure.in b/configure.in
new file mode 100644 (file)
index 0000000..cda6688
--- /dev/null
@@ -0,0 +1,31 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ(2.57)
+AC_INIT(chise-fonts, 0.1, chise-en@m17n.org)
+
+AC_CANONICAL_TARGET
+
+# Checks for programs.
+# AC_PROG_CC
+# AC_PROG_LIBTOOL
+#  AC_CHECK_PROGS(LIBTOOL, glibtool libtool, libtool, \
+#      /usr/local/bin:/opt/bin:/sw/bin:/usr/bin:/bin)
+
+AC_SUBST(ac_configure_args)
+
+# Checks for header files.
+
+# Checks for typedefs, structures, and compiler characteristics.
+#AC_C_CONST
+#AC_C_INLINE
+
+# Checks for library functions.
+#AC_FUNC_ALLOCA
+#AC_FUNC_STRNLEN
+
+#AC_CHECK_FUNCS(strnlen)
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([GT/Makefile])
+AC_OUTPUT