diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2021-03-20 11:54:48 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-17 23:16:50 -0500 |
commit | ac06fdcde120b595e259ff733a38823ecc752af0 (patch) | |
tree | 0385ea77d1b14f0ba4adae62ffe1d988812d9860 /libraries/cryptopp | |
parent | b2b84d66e1ec7a9cc5791f9eb91de6a059b1ba91 (diff) | |
download | slackbuilds-ac06fdcde120b595e259ff733a38823ecc752af0.tar.gz |
libraries/cryptopp: Removed (added to Slackware).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/cryptopp')
-rw-r--r-- | libraries/cryptopp/README | 4 | ||||
-rw-r--r-- | libraries/cryptopp/cryptopp.SlackBuild | 95 | ||||
-rw-r--r-- | libraries/cryptopp/cryptopp.info | 10 | ||||
-rw-r--r-- | libraries/cryptopp/cryptopp.pc | 13 | ||||
-rw-r--r-- | libraries/cryptopp/slack-desc | 19 |
5 files changed, 0 insertions, 141 deletions
diff --git a/libraries/cryptopp/README b/libraries/cryptopp/README deleted file mode 100644 index 3efbfacbaf..0000000000 --- a/libraries/cryptopp/README +++ /dev/null @@ -1,4 +0,0 @@ -Crypto++ Library is a free C++ class library of cryptographic schemes. - -Pass DOC=yes to the script to create proper documentation (html), in -case you want man 3 pages created too, check the buildscript for hints. diff --git a/libraries/cryptopp/cryptopp.SlackBuild b/libraries/cryptopp/cryptopp.SlackBuild deleted file mode 100644 index 3f5a569364..0000000000 --- a/libraries/cryptopp/cryptopp.SlackBuild +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/sh - -# Slackware build script for cryptopp -# Written by Iskar Enev (iskar.enev@gmail.com) -# -# Maintained by Markus Reichelt <slackbuilds@mareichelt.de> 0xCCEEF115 - -PRGNAM=cryptopp -VERSION=${VERSION:-8.5.0} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -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 -unzip -a -d $PRGNAM-$VERSION $CWD/${PRGNAM}$(echo $VERSION | tr -d .).zip -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 {} \; - -# Fix Makefile to install correctly on x86_64. -sed -i "s%(PREFIX)/lib%(PREFIX)/lib${LIBDIRSUFFIX}%g" GNUmakefile - -make dynamic CFLAGS="$SLKCFLAGS" CXXFLAGS="-DNDEBUG $SLKCFLAGS" -make install PREFIX=$PKG/usr -ln -s libcryptopp.so $PKG/usr/lib${LIBDIRSUFFIX}/libcryptopp-${VERSION}.so.0 - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -# Install a pkgconfig file -mkdir $PKG/usr/lib$LIBDIRSUFFIX/pkgconfig -sed "s|@LIBDIRSUFFIX@|$LIBDIRSUFFIX|" $CWD/$PRGNAM.pc \ - > $PKG/usr/lib$LIBDIRSUFFIX/pkgconfig/$PRGNAM.pc -sed -i "s/5.6.2/${VERSION}/" $PKG/usr/lib$LIBDIRSUFFIX/pkgconfig/$PRGNAM.pc - - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a *.txt $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -if [ "$DOC" = "yes" ]; then - # Fix Doxyfile to create man pages - #sed -i "s/GENERATE_MAN = NO/GENERATE_MAN = YES/" Doxyfile - #sed -i "s/MAN_LINKS = NO/MAN_LINKS = YES/" Doxyfile - - doxygen Doxyfile - - cp -a html-docs $PKG/usr/doc/$PRGNAM-$VERSION - - # uncomment the following to also have the prepared man 3 pages properly installed - #mv $PKG/usr/doc/$PRGNAM-$VERSION/html-docs/man $PKG/usr - #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 -fi - -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/cryptopp/cryptopp.info b/libraries/cryptopp/cryptopp.info deleted file mode 100644 index e5f0afa890..0000000000 --- a/libraries/cryptopp/cryptopp.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="cryptopp" -VERSION="8.5.0" -HOMEPAGE="https://www.cryptopp.com/" -DOWNLOAD="https://www.cryptopp.com/cryptopp850.zip" -MD5SUM="43d448bf8e11c24f808e3a1006f5cc97" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Markus Reichelt" -EMAIL="slackbuilds@mareichelt.de" diff --git a/libraries/cryptopp/cryptopp.pc b/libraries/cryptopp/cryptopp.pc deleted file mode 100644 index 45d65d071b..0000000000 --- a/libraries/cryptopp/cryptopp.pc +++ /dev/null @@ -1,13 +0,0 @@ -prefix=/usr -exec_prefix=${prefix} -libdir=${prefix}/lib@LIBDIRSUFFIX@ -includedir=${prefix}/include/cryptopp - -Name: Crypto++ -Description: A free C++ class library of cryptographic schemes -Version: 5.6.2 -URL: http://www.cryptopp.com -Requires: -Conflicts: -Libs: -L${libdir} -lcryptopp -Cflags: -I${includedir} diff --git a/libraries/cryptopp/slack-desc b/libraries/cryptopp/slack-desc deleted file mode 100644 index 3dfed21c6b..0000000000 --- a/libraries/cryptopp/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------------------------------------------------------| -cryptopp: cryptopp (library of cryptographic schemes) -cryptopp: -cryptopp: Crypto++ Library is a free C++ class library of cryptographic schemes. -cryptopp: -cryptopp: Homepage: http://www.cryptopp.com/ -cryptopp: -cryptopp: -cryptopp: -cryptopp: -cryptopp: -cryptopp: |