summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2024-03-06 12:09:56 +0100
committer Willy Sudiarto Raharjo2024-03-06 12:09:56 +0100
commite58bc609f599051c7cb4a694bc0ac61ede4fd8da (patch)
tree4fa08fe6082a2fc248ecc1d4885eee378190c51e /development
parent7898d04f6d33dd892d6a3082b21fbbc44be62f79 (diff)
downloadslackbuilds-e58bc609f599051c7cb4a694bc0ac61ede4fd8da.tar.gz
development/ola: Removed (FTB and maintainer is inactive).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/ola/README10
-rw-r--r--development/ola/ola.SlackBuild117
-rw-r--r--development/ola/ola.info10
-rw-r--r--development/ola/slack-desc19
4 files changed, 0 insertions, 156 deletions
diff --git a/development/ola/README b/development/ola/README
deleted file mode 100644
index 65b2bbb76e..0000000000
--- a/development/ola/README
+++ /dev/null
@@ -1,10 +0,0 @@
-The Open Lighting Architecture (OLA) provides a plugin framework for
-distributing DMX512 control signals on Mac and Linux. It provides C++
-and Python libraries which abstract away the underlying DMX over IP
-protocol or DMX interface. See http://opendmx.net/index.php/OLA for
-more information.
-
-The build script can optionally disable python bindings and/or enable
-the embedded http server. WITH_PYTHON=no will disable the python
-bindings, and WITH_HTTP=yes will enable the embedded http server (in
-which case libmicrohttp also be required).
diff --git a/development/ola/ola.SlackBuild b/development/ola/ola.SlackBuild
deleted file mode 100644
index d5a800863d..0000000000
--- a/development/ola/ola.SlackBuild
+++ /dev/null
@@ -1,117 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for ola
-
-# Written by Georg Nagel (g.schlmm [at] gmail [dot] com)
-
-# 20220217 bkw: Modified by SlackBuilds.org:
-# - updated for v0.10.8. needed for protobuf3 (because the old
-# protobuf is going away). also it's better to ship a release
-# than a git commit from ~4 years ago.
-# - don't ship static libraries.
-# - get rid of .la files (they are verboten in 15.0).
-# - remove useless INSTALL from doc dir.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=ola
-VERSION=${VERSION:-0.10.8}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-WITH_HTTP=${WITH_HTTP:-no}
-WITH_PYTHON=${WITH_PYTHON:-yes}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-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"
-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 {} \+
-
-BUILD_HTTP="--disable-http"
-[ "$WITH_HTTP" != "no" ] && BUILD_HTTP="--enable-http"
-
-BUILD_PYTHON="--enable-python-libs"
-[ "$WITH_PYTHON" != "yes" ] && BUILD_PYTHON=""
-
-autoreconf -fiv
-
-SLKCFLAGS+=" -Wno-error"
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-CPPFLAGS="$CPPFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux \
- --disable-static \
- --enable-shared \
- $BUILD_HTTP $BUILD_PYTHON
-
-make
-
-# 20220217 bkw: Makefile installs symlinks with absolute paths, e.g.
-# /usr/bin/ola_patch => /usr/bin/ola_dev_info, which are broken
-# because we use DESTDIR. Make them relative.
-sed '/LN_S/s,\$(bindir)/,,' Makefile
-
-make install-strip DESTDIR=$PKG
-gzip -9 $PKG/usr/man/man*/*
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a README COPYING AUTHORS ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-rm -f $PKG/usr/lib*/*.la
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/development/ola/ola.info b/development/ola/ola.info
deleted file mode 100644
index 9719078c3b..0000000000
--- a/development/ola/ola.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="ola"
-VERSION="0.10.8"
-HOMEPAGE="https://www.openlighting.org/"
-DOWNLOAD="https://github.com/OpenLightingProject/ola/releases/download/0.10.8/ola-0.10.8.tar.gz"
-MD5SUM="ba52dd61f7d47d33b79ccd0502a6522d"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="cppunit protobuf3"
-MAINTAINER="Georg Nagel"
-EMAIL="g.schlmm [at] gmail [dot] com"
diff --git a/development/ola/slack-desc b/development/ola/slack-desc
deleted file mode 100644
index c26e9a9b94..0000000000
--- a/development/ola/slack-desc
+++ /dev/null
@@ -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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-ola: ola (The Open Lighting Architecture)
-ola:
-ola: The Open Lighting Architecture (OLA) provides a plugin framework for
-ola: distributing DMX512 control signals on Mac and Linux. It provides C++
-ola: and Python libraries which abstract away the underlying DMX over IP
-ola: protocol or DMX interface. See http://opendmx.net/index.php/OLA for
-ola: more information.
-ola:
-ola:
-ola:
-ola: