diff options
author | Kevin E Martin <kem@kem.org> | 2005-06-30 22:28:08 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-06-30 22:28:08 +0000 |
commit | b4bc7920c657165fb96c0941f501f1ff942bcc82 (patch) | |
tree | e468c5992af66892faff07211f92e6a08c0bb812 | |
parent | a546be63238ca48e3feb9589917b682df506b0f8 (diff) |
Initial build system files for font module
-rw-r--r-- | AUTHORS | 0 | ||||
-rw-r--r-- | COPYING | 19 | ||||
-rw-r--r-- | ChangeLog | 0 | ||||
-rw-r--r-- | INSTALL | 0 | ||||
-rw-r--r-- | Makefile.am | 62 | ||||
-rw-r--r-- | NEWS | 0 | ||||
-rw-r--r-- | README | 0 | ||||
-rwxr-xr-x | autogen.sh | 12 | ||||
-rw-r--r-- | configure.ac | 35 |
9 files changed, 128 insertions, 0 deletions
@@ -0,0 +1,19 @@ +koi12x24b.bdf, koi8x16b.bdf and koi8x16.bdf: +-------------------------------------------- +May be distributed and modified without restrictions. + + +koi12x24.bdf and koi6x13.bdf: +----------------------------- +Changes 1999-2000 by Serge Winitzki. +This software may be used, modified, copied, distributed, and sold, +in both source and binary form provided that the copyright +and these terms are retained. Under no circumstances is the author +responsible for the proper functioning of this software, nor does +the author assume any responsibility for damages incurred with its use. + + +koi5x8.bdf, koi6x13b.bdf, koi6x9.bdf, koi7x14b.bdf, koi7x14.bdf, +koi8x13.bdf, koi9x15b.bdf, koi9x15.bdf, koi9x18b.bdf and koi9x18.bdf: +--------------------------------------------------------------------- +"Public domain font. Share and enjoy." diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ChangeLog diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..5df34ec --- /dev/null +++ b/Makefile.am @@ -0,0 +1,62 @@ +# Copyright 2005 Red Hat, Inc. +# +# Permission to use, copy, modify, distribute, and sell this software +# and its documentation for any purpose is hereby granted without +# fee, provided that the above copyright notice appear in all copies +# and that both that copyright notice and this permission notice +# appear in supporting documentation, and that the name of Red Hat +# not be used in advertising or publicity pertaining to distribution +# of the software without specific, written prior permission. Red +# Hat makes no representations about the suitability of this software +# for any purpose. It is provided "as is" without express or implied +# warranty. +# +# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN +# NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR +# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, +# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +FONT_DIR = cyrillic +FONT_FILES = \ + koi12x24b \ + koi12x24 \ + koi5x8 \ + koi6x13b \ + koi6x13 \ + koi6x9 \ + koi7x14b \ + koi7x14 \ + koi8x13 \ + koi8x16b \ + koi8x16 \ + koi9x15b \ + koi9x15 \ + koi9x18b \ + koi9x18 + +BDF_FILES = $(foreach X, $(FONT_FILES), $(X).bdf) +PCF_FILES = $(foreach X, $(FONT_FILES), $(X).pcf.gz) + +SUFFIXES = .bdf .pcf.gz + +.bdf.pcf.gz: + @rm -f $@ + $(BDFTOPCF) -t $^ | gzip > $@ + +fontdir = $(libdir)/X11/fonts/$(FONT_DIR) +font_DATA = $(PCF_FILES) +CLEANFILES = $(font_DATA) + +EXTRA_DIST = $(BDF_FILES) autogen.sh + +install-data-hook: + @rm -f $(DESTDIR)$(fontdir)/fonts.scale + $(MKFONTSCALE) $(DESTDIR)$(fontdir) + @rm -f $(DESTDIR)$(fontdir)/font.dir + $(MKFONTDIR) $(DESTDIR)$(fontdir) + +distuninstallcheck: + @: diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..904cd67 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd $srcdir + +autoreconf -v --install || exit 1 +cd $ORIGDIR || exit $? + +$srcdir/configure --enable-maintainer-mode "$@" diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..056b771 --- /dev/null +++ b/configure.ac @@ -0,0 +1,35 @@ +dnl Copyright 2005 Red Hat, Inc. +dnl +dnl Permission to use, copy, modify, distribute, and sell this software +dnl and its documentation for any purpose is hereby granted without +dnl fee, provided that the above copyright notice appear in all copies +dnl and that both that copyright notice and this permission notice +dnl appear in supporting documentation, and that the name of Red Hat +dnl not be used in advertising or publicity pertaining to distribution +dnl of the software without specific, written prior permission. Red +dnl Hat makes no representations about the suitability of this software +dnl for any purpose. It is provided "as is" without express or implied +dnl warranty. +dnl +dnl RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN +dnl NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR +dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +dnl OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, +dnl NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +dnl CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +dnl +dnl Process this file with autoconf to create configure. + +AC_PREREQ([2.57]) +AC_INIT(font-misc-cyrillic, [7.0], [xorg@freedestkop.org], font-misc-cyrillic) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +AC_PROG_INSTALL + +AC_PATH_PROG(BDFTOPCF, bdftopcf) +AC_PATH_PROG(MKFONTSCALE, mkfontscale) +AC_PATH_PROG(MKFONTDIR, mkfontdir) + +AC_OUTPUT([Makefile]) |