From 0979f839ec7f1e2c2e10fb81597e3926d91bd533 Mon Sep 17 00:00:00 2001 From: mancha Date: Wed, 30 Oct 2013 23:23:58 -0500 Subject: libraries/tsocks: fix incorrect LD_PRELOAD paths on x86_64 Signed-off-by: Robby Workman --- libraries/tsocks/tsocks-1.8beta5-64bit.diff | 43 +++++++++++++++++++++++++++++ libraries/tsocks/tsocks.SlackBuild | 10 +++++-- 2 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 libraries/tsocks/tsocks-1.8beta5-64bit.diff (limited to 'libraries/tsocks') diff --git a/libraries/tsocks/tsocks-1.8beta5-64bit.diff b/libraries/tsocks/tsocks-1.8beta5-64bit.diff new file mode 100644 index 0000000000..d6ba336108 --- /dev/null +++ b/libraries/tsocks/tsocks-1.8beta5-64bit.diff @@ -0,0 +1,43 @@ +From 433c41f4a23130a079ed6e681e7016c0b187fb61 Mon Sep 17 00:00:00 2001 +From: mancha +Date: Thu, 26 Sep 2013 +Subject: Use appropriate path on x86_64 systems + + tsocks | 14 +++++++------- + 1 file changed, 7 insertions(+), 7 deletions(-) + +--- a/tsocks 2013-09-26 ++++ b/tsocks 2013-09-26 +@@ -46,14 +46,14 @@ case "$1" in + on) + if [ -z "$LD_PRELOAD" ] + then +- export LD_PRELOAD="/usr/lib/libtsocks.so" ++ export LD_PRELOAD="/usr/lib64/libtsocks.so" + else +- echo $LD_PRELOAD | grep -q "/usr/lib/libtsocks\.so" || \ +- export LD_PRELOAD="/usr/lib/libtsocks.so $LD_PRELOAD" ++ echo $LD_PRELOAD | grep -q "/usr/lib64/libtsocks\.so" || \ ++ export LD_PRELOAD="/usr/lib64/libtsocks.so $LD_PRELOAD" + fi + ;; + off) +- export LD_PRELOAD=`echo -n $LD_PRELOAD | sed 's/\/usr\/lib\/libtsocks.so \?//'` ++ export LD_PRELOAD=`echo -n $LD_PRELOAD | sed 's/\/usr\/lib64\/libtsocks.so \?//'` + if [ -z "$LD_PRELOAD" ] + then + unset LD_PRELOAD +@@ -68,10 +68,10 @@ case "$1" in + *) + if [ -z "$LD_PRELOAD" ] + then +- export LD_PRELOAD="/usr/lib/libtsocks.so" ++ export LD_PRELOAD="/usr/lib64/libtsocks.so" + else +- echo $LD_PRELOAD | grep -q "/usr/lib/libtsocks\.so" || \ +- export LD_PRELOAD="/usr/lib/libtsocks.so $LD_PRELOAD" ++ echo $LD_PRELOAD | grep -q "/usr/lib64/libtsocks\.so" || \ ++ export LD_PRELOAD="/usr/lib64/libtsocks.so $LD_PRELOAD" + fi + + if [ $# = 0 ] diff --git a/libraries/tsocks/tsocks.SlackBuild b/libraries/tsocks/tsocks.SlackBuild index 7b4f6ff42a..21473cebb4 100644 --- a/libraries/tsocks/tsocks.SlackBuild +++ b/libraries/tsocks/tsocks.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=tsocks VERSION=${VERSION:-1.8beta5} SRCVERSION=${SRCVERSION:-1.8} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: @@ -43,7 +43,7 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -DOCS="COPYING ChangeLog FAQ" +DOCS="COPYING ChangeLog FAQ tsocks.conf.{simple,complex}.example" if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" @@ -74,6 +74,10 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +if [ "$ARCH" = "x86_64" ]; then + patch -p1 --verbose < $CWD/tsocks-1.8beta5-64bit.diff || exit 1 +fi + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -87,6 +91,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG +install -m 0755 inspectsocks validateconf $PKG/usr/bin + find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -- cgit v1.2.3