mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/terminus-font: Removed (included in 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
aea22a6573
commit
f9bfe94cfe
5 changed files with 0 additions and 131 deletions
|
@ -1,11 +0,0 @@
|
|||
Terminus Font is a clean, fixed width bitmap font, designed for long
|
||||
(8 and more hours per day) work with computers. Version 4.38 contains
|
||||
879 characters, covers about 120 language sets and supports
|
||||
ISO8859-1/2/5/7/9/13/15/16, Paratype-PT154/PT254, KOI8-R/U/E/F,
|
||||
Esperanto, many IBM, Windows and Macintosh code pages, as well as the
|
||||
IBM VGA, vt100 and xterm pseudographic characters.
|
||||
|
||||
The sizes present are 6x12, 8x14, 8x16, 10x18, 10x20, 11x22, 12x24,
|
||||
14x28 and 16x32.
|
||||
The styles are normal and bold (except for 6x12), plus EGA/VGA-bold
|
||||
for 8x14 and 8x16.
|
|
@ -1,13 +0,0 @@
|
|||
# Update mkfontscale and mkfontdir:
|
||||
if [ -x /usr/bin/mkfontdir ]; then
|
||||
( cd /usr/share/fonts/misc
|
||||
mkfontscale .
|
||||
mkfontdir .
|
||||
)
|
||||
fi
|
||||
|
||||
# Update the X font indexes:
|
||||
if [ -x /usr/bin/fc-cache ]; then
|
||||
/usr/bin/fc-cache -f
|
||||
fi
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
terminus-font: terminus-font (a clean fixed width console and X11 font)
|
||||
terminus-font:
|
||||
terminus-font: Terminus Font is a clean, fixed width bitmap font, designed for long
|
||||
terminus-font: (8 and more hours per day) work with computers. Version 4.38 contains
|
||||
terminus-font: 879 characters, covers about 120 language sets and supports
|
||||
terminus-font: ISO8859-1/2/5/7/9/13/15/16, Paratype-PT154/PT254, KOI8-R/U/E/F,
|
||||
terminus-font: Esperanto, many IBM, Windows and Macintosh code pages, as well as the
|
||||
terminus-font: IBM VGA, vt100 and xterm pseudographic characters.
|
||||
terminus-font:
|
||||
terminus-font: Homepage: http://terminus-font.sourceforge.net/
|
||||
terminus-font:
|
|
@ -1,78 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for terminus-font
|
||||
|
||||
# Copyright (c) 2008-2010, Antonio Hernández Blas <hba.nihilismus@gmail.com>
|
||||
# Copyright 2011-2012 Binh Nguyen <binhvng@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are met:
|
||||
# 1.- Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
|
||||
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||
|
||||
PRGNAM=terminus-font
|
||||
VERSION=${VERSION:-4.38}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
chmod +x configure
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--psfdir=/usr/share/kbd/consolefonts \
|
||||
--acmdir=/usr/share/kbd/consoletrans \
|
||||
--x11dir=/usr/share/fonts/misc
|
||||
|
||||
make
|
||||
make txt
|
||||
make DESTDIR=$PKG TESTDIR= install install-uni install-ref install-acm
|
||||
|
||||
# Install Fontconfig configuration file
|
||||
# See README, last FAQ
|
||||
( mkdir -p $PKG/etc/fonts/conf.avail/ $PKG/etc/fonts/conf.d
|
||||
cat 75-yes-terminus.conf > $PKG/etc/fonts/conf.avail/75-yes-terminus.conf
|
||||
cd $PKG/etc/fonts/conf.d
|
||||
ln -sf ../conf.avail/75-yes-terminus.conf .
|
||||
) || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS CHANGES COPYING NEWS README* *.TXT $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="terminus-font"
|
||||
VERSION="4.38"
|
||||
HOMEPAGE="http://terminus-font.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/terminus-font/terminus-font-4.38.tar.gz"
|
||||
MD5SUM="a8e792fe6e84c86ed2b6ed3e2a12ba66"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Binh Nguyen"
|
||||
EMAIL="binhvng@gmail.com"
|
Loading…
Reference in a new issue