mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
graphics/fontmatrix: Added to 12.2 repository
This commit is contained in:
parent
f39edf4fbe
commit
0c3ded9b40
5 changed files with 140 additions and 0 deletions
15
graphics/fontmatrix/README
Normal file
15
graphics/fontmatrix/README
Normal file
|
@ -0,0 +1,15 @@
|
|||
fontmatrix is a manager built with the kind of features and abilities
|
||||
graphic designers, layout professionals along with others have felt
|
||||
necessary, but modernized with some new touches.
|
||||
|
||||
Fontmatrix has a concept of 'tagging'. This makes it really nice to
|
||||
group fonts and even sub-group them logically for use in a book for
|
||||
instance. It also has extensive gui support for showing all glyphs
|
||||
in a font, previews of sample text, variable sizing and also tells
|
||||
what kinds of advanced Open Type features are inside each font. These
|
||||
features have never been seen outside of a font editor. And not least,
|
||||
it creates a nice PDF catalogue of user's fonts for printing or
|
||||
reference. In short, fontmatrix is a font manager for professionals,
|
||||
but is nice and user friendly.
|
||||
|
||||
Requires: Qt4.
|
10
graphics/fontmatrix/doinst.sh
Normal file
10
graphics/fontmatrix/doinst.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
88
graphics/fontmatrix/fontmatrix.SlackBuild
Normal file
88
graphics/fontmatrix/fontmatrix.SlackBuild
Normal file
|
@ -0,0 +1,88 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for fontmatrix
|
||||
|
||||
# Written by Larry Hajali <larryhaja[at]gmail[dot]com>
|
||||
|
||||
PRGNAM=fontmatrix
|
||||
VERSION=${VERSION:-0.4.2}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION-Source
|
||||
tar xvf $CWD/$PRGNAM-$VERSION-Source.tar.gz
|
||||
cd $PRGNAM-$VERSION-Source
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Fix the desktop menu item.
|
||||
echo "" >> $PRGNAM.desktop
|
||||
echo "StartupNotify=false" >> $PRGNAM.desktop
|
||||
|
||||
mkdir build && cd build
|
||||
cmake \
|
||||
-DCMAKE_INSTALL_PREFIX:PATH=/usr \
|
||||
-DOWN_SHAPER=1 \
|
||||
-DCMAKE_SKIP_RPATH:BOOL=1 \
|
||||
-DRPATH_STYLE:STRING=none \
|
||||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" ..
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
rm -rf $PKG/usr/share/icons
|
||||
for i in 16 22 32 48 64 128; do
|
||||
mkdir -p $PKG/usr/share/icons/hicolor/${i}x${i}/apps
|
||||
install -m 0644 src/icons/application-fontmatrix_${i}.png \
|
||||
$PKG/usr/share/icons/hicolor/${i}x${i}/apps/$PRGNAM.png
|
||||
done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COPYING INSTALL TODO harfbuzz/{COPYING.*,README,AUTHORS} \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat harfbuzz/COPYING > $PKG/usr/doc/$PRGNAM-$VERSION/COPYING.harfbuzz
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/*
|
||||
|
||||
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 $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
graphics/fontmatrix/fontmatrix.info
Normal file
8
graphics/fontmatrix/fontmatrix.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="fontmatrix"
|
||||
VERSION="0.4.2"
|
||||
HOMEPAGE="http://fontmatrix.net/"
|
||||
DOWNLOAD="http://fontmatrix.net/archives/fontmatrix-0.4.2-Source.tar.gz"
|
||||
MD5SUM="8ad43c26162b33b2a9eb9f11a02a93c2"
|
||||
MAINTAINER="Larry Hajali"
|
||||
EMAIL="larryhaja[at]gmail[dot]com"
|
||||
APPROVED="dsomero"
|
19
graphics/fontmatrix/slack-desc
Normal file
19
graphics/fontmatrix/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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------------------------------------------------------|
|
||||
fontmatrix: fontmatrix (font manager)
|
||||
fontmatrix:
|
||||
fontmatrix: fontmatrix is a manager built with the kind of features and abilities
|
||||
fontmatrix: graphic designers, layout professionals along with others have felt
|
||||
fontmatrix: necessary, but modernized with some new touches.
|
||||
fontmatrix:
|
||||
fontmatrix: Homepage: http://fontmatrix.net/
|
||||
fontmatrix:
|
||||
fontmatrix:
|
||||
fontmatrix:
|
||||
fontmatrix:
|
Loading…
Reference in a new issue