aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2020-12-08 10:49:16 +0100
committerRobby Workman <rworkman@slackbuilds.org>2021-04-17 23:37:17 -0500
commitcb42bb30ede5e83fdfceb25b8376ae4d01dcbbaa (patch)
tree0e0f9481f179898eb2612687ad39d543cce00de5
parentebac5c6be2125c4f98289094fa76cd8fa04fb6d8 (diff)
downloadslackbuilds-cb42bb30ede5e83fdfceb25b8376ae4d01dcbbaa.tar.xz
libraries/libdmtx: Removed (added to Slackware).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r--libraries/libdmtx/README7
-rw-r--r--libraries/libdmtx/libdmtx.SlackBuild85
-rw-r--r--libraries/libdmtx/libdmtx.info10
-rw-r--r--libraries/libdmtx/slack-desc19
4 files changed, 0 insertions, 121 deletions
diff --git a/libraries/libdmtx/README b/libraries/libdmtx/README
deleted file mode 100644
index 653db41736df..000000000000
--- a/libraries/libdmtx/README
+++ /dev/null
@@ -1,7 +0,0 @@
-libdmtx (Data Matrix barcode library and utilities)
-
-libdmtx is open source software for reading and writing Data Matrix barcodes
-on Linux, Unix, OS X, Windows, and some mobile devices. At its core libdmtx
-is a shared library, allowing C/C++ programs to use its capabilities without
-restrictions or overhead. The included utility programs, dmtxread and
-dmtxwrite, serve as the official interface to libdmtx from the command line.
diff --git a/libraries/libdmtx/libdmtx.SlackBuild b/libraries/libdmtx/libdmtx.SlackBuild
deleted file mode 100644
index b50ea62188e2..000000000000
--- a/libraries/libdmtx/libdmtx.SlackBuild
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for libdmtx
-
-# Written by David Miller dave@frop.net
-# This script is released into the public domain
-
-PRGNAM=libdmtx
-VERSION=${VERSION:-0.7.2}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-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"
-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.bz2
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man
-
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING COPYING.LESSER ChangeLog INSTALL KNOWNBUG NEWS README* TODO \
- $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/libraries/libdmtx/libdmtx.info b/libraries/libdmtx/libdmtx.info
deleted file mode 100644
index b38ced7120a3..000000000000
--- a/libraries/libdmtx/libdmtx.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="libdmtx"
-VERSION="0.7.2"
-HOMEPAGE="http://www.libdmtx.org/"
-DOWNLOAD="http://downloads.sourceforge.net/project/libdmtx/libdmtx/0.7.2/libdmtx-0.7.2.tar.bz2"
-MD5SUM="0684cf3857591e777b57248d652444ae"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="David Miller"
-EMAIL="dave@frop.net"
diff --git a/libraries/libdmtx/slack-desc b/libraries/libdmtx/slack-desc
deleted file mode 100644
index f9cb669663fc..000000000000
--- a/libraries/libdmtx/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------------------------------------------------------|
-libdmtx: libdmtx (Data Matrix barcode library and utilities)
-libdmtx:
-libdmtx: libdmtx is open source software for reading and writing Data Matrix
-libdmtx: barcodes on Linux, Unix, OS X, Windows, and some mobile devices. At
-libdmtx: its core libdmtx is a shared library, allowing C/C++ programs
-libdmtx: to use its capabilities without restrictions or overhead. The
-libdmtx: included utility programs, dmtxread and dmtxwrite, serve as the
-libdmtx: official interface to libdmtx from the command line.
-libdmtx:
-libdmtx:
-libdmtx: