From 19dbfaa1eb34e5f67df61e500f3d1d7205a19c6a Mon Sep 17 00:00:00 2001 From: Kevin E Martin Date: Thu, 30 Jun 2005 22:28:06 +0000 Subject: Initial build system files for font module --- AUTHORS | 0 COPYING | 58 ++++++++++++++++++ ChangeLog | 0 INSTALL | 0 Makefile.am | 188 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ NEWS | 0 README | 0 autogen.sh | 12 ++++ configure.ac | 39 +++++++++++++ 9 files changed, 297 insertions(+) create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 INSTALL create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100755 autogen.sh create mode 100644 configure.ac diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..e69de29 diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..bfff422 --- /dev/null +++ b/COPYING @@ -0,0 +1,58 @@ +This is the LEGAL NOTICE pertaining to the Lucida fonts from Bigelow & Holmes: + + NOTICE TO USER: The source code, including the glyphs or icons + forming a par of the OPEN LOOK TM Graphic User Interface, on this + tape and in these files is copyrighted under U.S. and international + laws. Sun Microsystems, Inc. of Mountain View, California owns + the copyright and has design patents pending on many of the icons. + AT&T is the owner of the OPEN LOOK trademark associated with the + materials on this tape. Users and possessors of this source code + are hereby granted a nonexclusive, royalty-free copyright and + design patent license to use this code in individual and + commercial software. A royalty-free, nonexclusive trademark + license to refer to the code and output as "OPEN LOOK" compatible + is available from AT&T if, and only if, the appearance of the + icons or glyphs is not changed in any manner except as absolutely + necessary to accommodate the standard resolution of the screen or + other output device, the code and output is not changed except as + authorized herein, and the code and output is validated by AT&T. + Bigelow & Holmes is the owner of the Lucida (R) trademark for the + fonts and bit-mapped images associated with the materials on this + tape. Users are granted a royalty-free, nonexclusive license to use + the trademark only to identify the fonts and bit-mapped images if, + and only if, the fonts and bit-mapped images are not modified in any + way by the user. + + + Any use of this source code must include, in the user documentation + and internal comments to the code, notices to the end user as + follows: + + + (c) Copyright 1989 Sun Microsystems, Inc. Sun design patents + pending in the U.S. and foreign countries. OPEN LOOK is a + trademark of AT&T. Used by written permission of the owners. + + + (c) Copyright Bigelow & Holmes 1986, 1985. Lucida is a registered + trademark of Bigelow & Holmes. Permission to use the Lucida + trademark is hereby granted only in association with the images + and fonts described in this file. + + + + SUN MICROSYSTEMS, INC., AT&T, AND BIGELOW & HOLMES + MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY OF + THIS SOURCE CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS" + WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. + SUN MICROSYSTEMS, INC., AT&T AND BIGELOW & HOLMES, + SEVERALLY AND INDIVIDUALLY, DISCLAIM ALL WARRANTIES + WITH REGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE. IN NO EVENT SHALL SUN MICROSYSTEMS, + INC., AT&T OR BIGELOW & HOLMES BE LIABLE FOR ANY + SPECIAL, INDIRECT, INCIDENTAL, 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 SOURCE CODE. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..e69de29 diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..56d7243 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,188 @@ +# 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 = 75dpi +BDF2UCS_FONT_FILES = \ + lubB08 \ + lubB10 \ + lubB12 \ + lubB14 \ + lubB18 \ + lubB19 \ + lubB24 \ + lubBI08 \ + lubBI10 \ + lubBI12 \ + lubBI14 \ + lubBI18 \ + lubBI19 \ + lubBI24 \ + lubI08 \ + lubI10 \ + lubI12 \ + lubI14 \ + lubI18 \ + lubI19 \ + lubI24 \ + luBIS08 \ + luBIS10 \ + luBIS12 \ + luBIS14 \ + luBIS18 \ + luBIS19 \ + luBIS24 \ + lubR08 \ + lubR10 \ + lubR12 \ + lubR14 \ + lubR18 \ + lubR19 \ + lubR24 \ + luBS08 \ + luBS10 \ + luBS12 \ + luBS14 \ + luBS18 \ + luBS19 \ + luBS24 \ + luIS08 \ + luIS10 \ + luIS12 \ + luIS14 \ + luIS18 \ + luIS19 \ + luIS24 \ + luRS08 \ + luRS10 \ + luRS12 \ + luRS14 \ + luRS18 \ + luRS19 \ + luRS24 +FONT_FILES = $(BDF2UCS_FONT_FILES) + +BDF_FILES = $(foreach X, $(FONT_FILES), $(X).bdf) +PCF_FILES = $(foreach X, $(FONT_FILES), $(X).pcf.gz) + +ISO8859_1_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-1.bdf) +ISO8859_1_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-1.pcf.gz) + +ISO8859_2_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-2.bdf) +ISO8859_2_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-2.pcf.gz) + +ISO8859_3_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-3.bdf) +ISO8859_3_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-3.pcf.gz) + +ISO8859_4_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-4.bdf) +ISO8859_4_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-4.pcf.gz) + +ISO8859_9_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-9.bdf) +ISO8859_9_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-9.pcf.gz) + +ISO8859_10_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-10.bdf) +ISO8859_10_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-10.pcf.gz) + +ISO8859_13_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-13.bdf) +ISO8859_13_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-13.pcf.gz) + +ISO8859_14_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-14.bdf) +ISO8859_14_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-14.pcf.gz) + +ISO8859_15_BDF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-15.bdf) +ISO8859_15_PCF_FILES = $(foreach X, $(BDF2UCS_FONT_FILES), $(X)-ISO8859-15.pcf.gz) + +UTIL_DIR = @MAPFILES_PATH@ + +SUFFIXES = .bdf .pcf.gz \ + -ISO8859-1.bdf \ + -ISO8859-2.bdf \ + -ISO8859-3.bdf \ + -ISO8859-4.bdf \ + -ISO8859-9.bdf \ + -ISO8859-10.bdf \ + -ISO8859-13.bdf \ + -ISO8859-14.bdf \ + -ISO8859-15.bdf + +.bdf.pcf.gz: + @rm -f $@ + $(BDFTOPCF) -t $^ | gzip > $@ + +.bdf-ISO8859-1.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-1 ISO8859-1 + +.bdf-ISO8859-2.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-2 ISO8859-2 + +.bdf-ISO8859-3.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-3 ISO8859-3 + +.bdf-ISO8859-4.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-4 ISO8859-4 + +.bdf-ISO8859-9.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-9 ISO8859-9 + +.bdf-ISO8859-10.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-10 ISO8859-10 + +.bdf-ISO8859-13.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-13 ISO8859-13 + +.bdf-ISO8859-14.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-14 ISO8859-14 + +.bdf-ISO8859-15.bdf: + @rm -f $@ + $(UCS2ANY) $^ $(UTIL_DIR)/map-ISO8859-15 ISO8859-15 + +fontdir = $(libdir)/X11/fonts/$(FONT_DIR) +font_DATA = \ + $(PCF_FILES) \ + $(ISO8859_1_PCF_FILES) \ + $(ISO8859_2_PCF_FILES) \ + $(ISO8859_3_PCF_FILES) \ + $(ISO8859_4_PCF_FILES) \ + $(ISO8859_9_PCF_FILES) \ + $(ISO8859_10_PCF_FILES) \ + $(ISO8859_13_PCF_FILES) \ + $(ISO8859_14_PCF_FILES) \ + $(ISO8859_15_PCF_FILES) +CLEANFILES = $(font_DATA) + +EXTRA_DIST = $(BDF_FILES) LU_LEGALNOTICE 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/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..e69de29 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..2da9d59 --- /dev/null +++ b/configure.ac @@ -0,0 +1,39 @@ +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-bh-75dpi, [7.0], [xorg@freedestkop.org], font-bh-75dpi) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +AC_PROG_INSTALL + +AC_PATH_PROG(BDFTOPCF, bdftopcf) +AC_PATH_PROG(UCS2ANY, ucs2any) +AC_PATH_PROG(MKFONTSCALE, mkfontscale) +AC_PATH_PROG(MKFONTDIR, mkfontdir) + +UTILFONT_MAPFILES(MAPFILES) +AC_SUBST(MAPFILES_PATH) + +AC_OUTPUT([Makefile]) -- cgit v1.2.3