From 1facdd736c831889c0043433474b37c5b93a43d2 Mon Sep 17 00:00:00 2001 From: Eugene Wissner Date: Wed, 22 Jul 2015 10:26:56 +0700 Subject: libraries/ioncube-loader: Added (Loader for ionCube Secured Files). Signed-off-by: Willy Sudiarto Raharjo --- libraries/ioncube-loader/README | 3 + libraries/ioncube-loader/doinst.sh | 14 ++++ libraries/ioncube-loader/ioncube-loader.SlackBuild | 81 ++++++++++++++++++++++ libraries/ioncube-loader/ioncube-loader.info | 10 +++ libraries/ioncube-loader/ioncube.ini | 2 + libraries/ioncube-loader/ioncube64.ini | 2 + libraries/ioncube-loader/slack-desc | 19 +++++ 7 files changed, 131 insertions(+) create mode 100644 libraries/ioncube-loader/README create mode 100644 libraries/ioncube-loader/doinst.sh create mode 100644 libraries/ioncube-loader/ioncube-loader.SlackBuild create mode 100644 libraries/ioncube-loader/ioncube-loader.info create mode 100644 libraries/ioncube-loader/ioncube.ini create mode 100644 libraries/ioncube-loader/ioncube64.ini create mode 100644 libraries/ioncube-loader/slack-desc (limited to 'libraries') diff --git a/libraries/ioncube-loader/README b/libraries/ioncube-loader/README new file mode 100644 index 0000000000..2f45a0f764 --- /dev/null +++ b/libraries/ioncube-loader/README @@ -0,0 +1,3 @@ +Using ionCube encoded and secured PHP files requires a file called +the ionCube Loader to be installed on the web server and made +available to PHP. diff --git a/libraries/ioncube-loader/doinst.sh b/libraries/ioncube-loader/doinst.sh new file mode 100644 index 0000000000..7dd6884f39 --- /dev/null +++ b/libraries/ioncube-loader/doinst.sh @@ -0,0 +1,14 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/php/20ioncube.ini.new diff --git a/libraries/ioncube-loader/ioncube-loader.SlackBuild b/libraries/ioncube-loader/ioncube-loader.SlackBuild new file mode 100644 index 0000000000..c9296083db --- /dev/null +++ b/libraries/ioncube-loader/ioncube-loader.SlackBuild @@ -0,0 +1,81 @@ +#!/bin/sh + +# Slackware build script for "ioncube-loader". + +# Copyright 2015 Eugene Wissner +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "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 COPYRIGHT +# OWNER OR CONTRIBUTORS 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. + +PRGNAM=ioncube-loader +SRCNAM=ioncube +VERSION=${VERSION:-5.0.12} +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 + TARGET="x86" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + TARGET="x86" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + TARGET="x86-64" + LIBDIRSUFFIX="64" +fi + +set -e + +rm -rf $PKG +rm -rf $TMP/$SRCNAM +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +tar xvf $CWD/ioncube_loaders_lin_$TARGET.tar.bz2 +cd $SRCNAM +chown -R root:root . + +mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/php/extensions +install -m 0755 ioncube_loader_lin_5.4_ts.so $PKG/usr/lib${LIBDIRSUFFIX}/php/extensions +mkdir -p $PKG/etc/php +cat $CWD/ioncube${LIBDIRSUFFIX}.ini > $PKG/etc/php/20ioncube.ini.new + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a LICENSE.txt README.txt USER-GUIDE.txt $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 +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/ioncube-loader/ioncube-loader.info b/libraries/ioncube-loader/ioncube-loader.info new file mode 100644 index 0000000000..45b6aed093 --- /dev/null +++ b/libraries/ioncube-loader/ioncube-loader.info @@ -0,0 +1,10 @@ +PRGNAM="ioncube-loader" +VERSION="5.0.12" +HOMEPAGE="https://www.ioncube.com" +DOWNLOAD="http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.bz2" +MD5SUM="a1be410194f2bf1de24ba7a286097a3d" +DOWNLOAD_x86_64="http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.bz2" +MD5SUM_x86_64="bfe1dbcf8b767ac5391461c60d81fda8" +REQUIRES="" +MAINTAINER="Eugene Wissner" +EMAIL="belka.ew@gmail.com" diff --git a/libraries/ioncube-loader/ioncube.ini b/libraries/ioncube-loader/ioncube.ini new file mode 100644 index 0000000000..01e6f7a5bb --- /dev/null +++ b/libraries/ioncube-loader/ioncube.ini @@ -0,0 +1,2 @@ +zend_extension = /usr/lib/php/extensions/ioncube_loader_lin_5.4_ts.so +ic24.enable = 0 diff --git a/libraries/ioncube-loader/ioncube64.ini b/libraries/ioncube-loader/ioncube64.ini new file mode 100644 index 0000000000..17df3dd767 --- /dev/null +++ b/libraries/ioncube-loader/ioncube64.ini @@ -0,0 +1,2 @@ +zend_extension = /usr/lib64/php/extensions/ioncube_loader_lin_5.4_ts.so +ic24.enable = 0 diff --git a/libraries/ioncube-loader/slack-desc b/libraries/ioncube-loader/slack-desc new file mode 100644 index 0000000000..60a98f9f1f --- /dev/null +++ b/libraries/ioncube-loader/slack-desc @@ -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------------------------------------------------------| +ioncube-loader: ioncube-loader (Loader for ionCube Secured Files) +ioncube-loader: +ioncube-loader: Using ionCube encoded and secured PHP files requires a file called +ioncube-loader: the ionCube Loader to be installed on the web server and made +ioncube-loader: available to PHP. +ioncube-loader: +ioncube-loader: Homepage: https://www.ioncube.com/loaders.php +ioncube-loader: +ioncube-loader: +ioncube-loader: +ioncube-loader: -- cgit v1.2.3