Skip to content

Commit

Permalink
development/msc-generator: Added (Draws signalling charts).
Browse files Browse the repository at this point in the history
  • Loading branch information
LuigiMasini authored and sbo-bot[bot] committed Nov 14, 2024
1 parent 0068f2d commit 1f34178
Show file tree
Hide file tree
Showing 7 changed files with 197 additions and 0 deletions.
6 changes: 6 additions & 0 deletions development/msc-generator/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Msc-generator

Msc-generator is a program that parses textual
chart descriptions and produces graphical output
in a variety of file formats, or as an object,
which can be embedded in documents, such as Word or PowerPoint.
16 changes: 16 additions & 0 deletions development/msc-generator/doinst.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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 -f usr/share/icons/hicolor >/dev/null 2>&1
fi
fi

if [ -x /usr/bin/install-info ]; then
( cd usr/info
# rm -f dir
for i in *.info*; do /usr/bin/install-info $i dir 2>/dev/null; done
)
fi
138 changes: 138 additions & 0 deletions development/msc-generator/msc-generator.SlackBuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
#!/bin/bash

# Slackware build script for msc-generator

# Copyright 2024 Luigi Masini, Milano
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script 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.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=msc-generator
VERSION=${VERSION:-8.5}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi

# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
fi

TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
elif [ "$ARCH" = "aarch64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi

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 .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;


# remove this explicit cast to float, as obj_state->gradient_frac is now a double
# see https://gitlab.com/graphviz/graphviz/-/commit/e5df7178bcf52d4f298dedd5a0d200084507d65b
sed -i "s/std::max((float)0\(.*\)std::min((float)1/std::max(0\.\1std::min(1\./g" ./src/libgvgen/gvgraphs.cpp

# if building from repo sources there will be an autogen
# if building from dist sources, no autogen
if [ -x ./autogen ]; then
./autogen
fi

SLKCFLAGS="-fpermissive -DTRUE=1 $SLKCFLAGS"

CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--infodir=/usr/info \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--build=$ARCH-slackware-linux \
--disable-font-checks


make
make install-strip DESTDIR=$PKG


mkdir -p $PKG/usr/share/applications
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop

mkdir -p $PKG/usr/share/icons/hicolor/32x32/apps/
cp $CWD/$PRGNAM.png $PKG/usr/share/icons/hicolor/32x32/apps/$PRGNAM.png

find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done

rm -f $PKG/usr/info/dir
gzip -9 $PKG/usr/info/msc-gen.info

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 $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE

8 changes: 8 additions & 0 deletions development/msc-generator/msc-generator.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[Desktop Entry]
Name=Msc Generator
Comment=Draws charts from textual description
Exec=/usr/bin/msc-gen --gui %U
Icon=msc-generator
Terminal=false
Type=Application
Categories=Development;
10 changes: 10 additions & 0 deletions development/msc-generator/msc-generator.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
PRGNAM="msc-generator"
VERSION="8.5"
HOMEPAGE="https://gitlab.com/msc-generator"
DOWNLOAD="https://gitlab.com/msc-generator/msc-generator/-/package_files/109742016/download"
MD5SUM="7f491ceab4d46a3c38354b9d6f893a36"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="graphviz glpk tinyxml2"
MAINTAINER="Luigi Masini"
EMAIL="[email protected]"
Binary file added development/msc-generator/msc-generator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions development/msc-generator/slack-desc
Original file line number Diff line number Diff line change
@@ -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 ':' except on otherwise blank lines.

|-----handy-ruler------------------------------------------------------|
msc-generator: msc-generator (chart generator)
msc-generator:
msc-generator: Msc-generator parses textual chart descriptions and produces
msc-generator: graphical output in a variety of file formats, or as an object,
msc-generator: which can be embedded in documents, such as Word or PowerPoint.
msc-generator:
msc-generator: https://gitlab.com/msc-generatorerator
msc-generator:
msc-generator:
msc-generator:
msc-generator:

0 comments on commit 1f34178

Please sign in to comment.