From 90fed7051eab1d6117c2e0b2d30b26c643d10b44 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Sun, 17 Jul 2011 23:40:13 -0500 Subject: network/thrift: Added (Apache Thrift Framework) Signed-off-by: Robby Workman --- network/thrift/README | 18 ++++++++ network/thrift/slack-desc | 19 +++++++++ network/thrift/thrift.SlackBuild | 92 ++++++++++++++++++++++++++++++++++++++++ network/thrift/thrift.info | 10 +++++ 4 files changed, 139 insertions(+) create mode 100644 network/thrift/README create mode 100644 network/thrift/slack-desc create mode 100644 network/thrift/thrift.SlackBuild create mode 100644 network/thrift/thrift.info (limited to 'network/thrift') diff --git a/network/thrift/README b/network/thrift/README new file mode 100644 index 0000000000..eb5db97653 --- /dev/null +++ b/network/thrift/README @@ -0,0 +1,18 @@ +Apache Thrift is a software framework for scalable cross-language services +development. It combines a software stack with a code generation engine to +build services that work efficiently and seamlessly among C++, Java, Python, +PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and OCaml. + +Other languages are not included because either they are not included in a +standard installation of Slackware, or because the standard way of installing +Thrift for that language is not via system packages; for example: + - Perl: install from CPAN + - PHP: bundle the Thrift source in your application + - Ruby: install with 'gem' +You will still need the Thrift compiler from this package. + +There are usage examples for more langauges at +http://wiki.apache.org/thrift/ThriftUsage + +libevent is an optional dependency; if it is installed, a C++ non-blocking +server library will be built. diff --git a/network/thrift/slack-desc b/network/thrift/slack-desc new file mode 100644 index 0000000000..e91542147b --- /dev/null +++ b/network/thrift/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 ':'. + + |-----handy-ruler------------------------------------------------------| +thrift: thrift (Apache Thrift Framework) +thrift: +thrift: Thrift is a software framework for scalable cross-language services +thrift: development. It combines a software stack with a code generation +thrift: engine to build services that work efficiently and seamlessly between +thrift: C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, +thrift: Smalltalk, and OCaml. +thrift: +thrift: This package contains the compiler, and C, C++, and Python libraries. +thrift: +thrift: diff --git a/network/thrift/thrift.SlackBuild b/network/thrift/thrift.SlackBuild new file mode 100644 index 0000000000..acd3657a8d --- /dev/null +++ b/network/thrift/thrift.SlackBuild @@ -0,0 +1,92 @@ +#!/bin/sh + +# Slackware build script for Apache Thrift + +# Copyright (c) 2010-2011, Fred Emmott +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +PRGNAM=thrift +VERSION=${VERSION:-0.6.0} +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 # Exit on most errors + +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 . \ + \( -perm 777 -o -perm 775 -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 \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --with-c-glib \ + --without-ruby \ + --without-php \ + --without-php_extension \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + CHANGES CONTRIBUTORS DISCLAIMER LICENSE NEWS NOTICE README \ + $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/network/thrift/thrift.info b/network/thrift/thrift.info new file mode 100644 index 0000000000..37e5aee1e3 --- /dev/null +++ b/network/thrift/thrift.info @@ -0,0 +1,10 @@ +PRGNAM="thrift" +VERSION="0.6.0" +HOMEPAGE="http://thrift.apache.org" +DOWNLOAD="http://archive.apache.org/dist/thrift/0.6.0/thrift-0.6.0.tar.gz" +MD5SUM="c1a9c679bc75d038ce5ef447bf6e4c75" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Fred Emmott" +EMAIL="mail@fredemmott.co.uk" +APPROVED="rworkman" -- cgit v1.2.3