diff options
author | Tomasz Bywalec <t.bywalec@gmail.com> | 2022-05-15 10:48:56 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-05-21 08:25:36 +0700 |
commit | 0fb858bd223422aa38de53c16a2644da8772f8b9 (patch) | |
tree | 33e9974016a2ab8cfa715f45031cfc9038a1fd76 /system/gnu-unifont | |
parent | 94e59d4b2f2819cd6b6d755d0fcc40a724ad6d35 (diff) |
system/gnu-unifont: Updated for version 14.0.03.
Also, replaced TTF with OTF in default formats list (TTF is no longer
default, but still can be included in the package by adding this format
to the FONTFORMATS environment variable when running the script).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/gnu-unifont')
-rw-r--r-- | system/gnu-unifont/README | 17 | ||||
-rw-r--r-- | system/gnu-unifont/doinst.sh | 1 | ||||
-rw-r--r-- | system/gnu-unifont/gnu-unifont.SlackBuild | 11 | ||||
-rw-r--r-- | system/gnu-unifont/gnu-unifont.info | 6 |
4 files changed, 22 insertions, 13 deletions
diff --git a/system/gnu-unifont/README b/system/gnu-unifont/README index 3c761f9f50fb..6928b7fe42b5 100644 --- a/system/gnu-unifont/README +++ b/system/gnu-unifont/README @@ -3,21 +3,22 @@ Unicode Basic Multilinguial Plane(BMP). The BMP is the first Unicode "plane" of 65,536(16bit) code points, and includes character encoding for most of the world's modern scripts. -By default, the package will include precompiled versions of the -font in TTF (TrueType), PCF (X Window bitmap) and PSF (console) -formats. This can be changed using FONTFORMATS environment variable, -which should be set to comma-separated list of font formats to include -in the package. +By default, the package will include precompiled versions of the font in OTF +(OpenType), PCF (X Window bitmap), PSF (console) and OTB (OpenType Bitmap) +formats. This can be changed using FONTFORMATS environment variable, which +should be set to comma-separated list of font formats to include in the +package. Available formats are: +otf = OpenType ttf = TrueType pcf = X Window bitmap psf = Console fonts otb = OpenType Bitmap fonts, compatible with recent versions of Pango - which don't support PCF fonts. Fonts in this format are generated - by converting precompiled PCF fonts using fonttosfnt tool. + which don't support BDF/PCF fonts. Fonts in this format are generated + by converting precompiled BDF/PCF fonts using fonttosfnt tool. For example, setting FONTFORMATS=pcf,psf will include only PCF and PSF fonts. If FONTFORMATS variable is not set the default value -"ttf,pcf,psf" is assumed. +"otf,pcf,psf,otb" is assumed. diff --git a/system/gnu-unifont/doinst.sh b/system/gnu-unifont/doinst.sh index 2822cf238c26..47ed4e784fb4 100644 --- a/system/gnu-unifont/doinst.sh +++ b/system/gnu-unifont/doinst.sh @@ -1,6 +1,7 @@ # Update the X font indexes: if [ -x /usr/bin/mkfontdir ]; then ( cd /usr/share/fonts/misc ; mkfontscale . ; mkfontdir . ) + ( cd /usr/share/fonts/OTF ; mkfontscale . ; mkfontdir . ) ( cd /usr/share/fonts/TTF ; mkfontscale . ; mkfontdir . ) fi diff --git a/system/gnu-unifont/gnu-unifont.SlackBuild b/system/gnu-unifont/gnu-unifont.SlackBuild index 4888a8b074b4..f8e3a2922482 100644 --- a/system/gnu-unifont/gnu-unifont.SlackBuild +++ b/system/gnu-unifont/gnu-unifont.SlackBuild @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gnu-unifont -VERSION=${VERSION:-14.0.02} +VERSION=${VERSION:-14.0.03} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -48,7 +48,7 @@ OUTPUT=${OUTPUT:-/tmp} SRCNAM=unifont DOCFILES="ChangeLog COPYING INSTALL NEWS README" -FONTFORMATS=${FONTFORMATS:-ttf,pcf,psf,otb} +FONTFORMATS=${FONTFORMATS:-otf,pcf,psf,otb} contains() { @@ -81,6 +81,13 @@ if contains "$FONTFORMATS" "pcf"; then FONTSCOPIED=1 fi +if contains "$FONTFORMATS" "otf"; then + mkdir -p $PKG/usr/share/fonts/OTF + cp -a *.otf $PKG/usr/share/fonts/OTF + + FONTSCOPIED=1 +fi + if contains "$FONTFORMATS" "ttf"; then mkdir -p $PKG/usr/share/fonts/TTF cp -a *.ttf $PKG/usr/share/fonts/TTF diff --git a/system/gnu-unifont/gnu-unifont.info b/system/gnu-unifont/gnu-unifont.info index fbaf53f823bb..c5c20912efb5 100644 --- a/system/gnu-unifont/gnu-unifont.info +++ b/system/gnu-unifont/gnu-unifont.info @@ -1,8 +1,8 @@ PRGNAM="gnu-unifont" -VERSION="14.0.02" +VERSION="14.0.03" HOMEPAGE="http://unifoundry.com/unifont/index.html" -DOWNLOAD="https://ftpmirror.gnu.org/unifont/unifont-14.0.02/unifont-14.0.02.tar.gz" -MD5SUM="8da4a699c4b90b95a71b7aba02347184" +DOWNLOAD="https://ftpmirror.gnu.org/unifont/unifont-14.0.03/unifont-14.0.03.tar.gz" +MD5SUM="dd2e9a7e6b406da75c0c8030a9e2f4db" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |