From f85e96904fc355114a1c5d5f1f4dddcdbcdf4f9c Mon Sep 17 00:00:00 2001 From: Mikko Varri Date: Thu, 13 May 2010 00:57:39 +0200 Subject: desktop/qtwitter: Added to 13.0 repository --- desktop/qtwitter/README | 8 +++ .../qtwitter/qtwitter-app_qtwitter-app.pro.patch | 12 ++++ desktop/qtwitter/qtwitter.SlackBuild | 74 ++++++++++++++++++++++ desktop/qtwitter/qtwitter.info | 10 +++ desktop/qtwitter/slack-desc | 19 ++++++ desktop/qtwitter/twitterapi_twitterapi.pro.patch | 12 ++++ 6 files changed, 135 insertions(+) create mode 100644 desktop/qtwitter/README create mode 100644 desktop/qtwitter/qtwitter-app_qtwitter-app.pro.patch create mode 100644 desktop/qtwitter/qtwitter.SlackBuild create mode 100644 desktop/qtwitter/qtwitter.info create mode 100644 desktop/qtwitter/slack-desc create mode 100644 desktop/qtwitter/twitterapi_twitterapi.pro.patch (limited to 'desktop') diff --git a/desktop/qtwitter/README b/desktop/qtwitter/README new file mode 100644 index 0000000000..7b90e5de60 --- /dev/null +++ b/desktop/qtwitter/README @@ -0,0 +1,8 @@ +qtwitter (microblogging client for StatusNet sites and Twitter) + +qTwitter is an application interacting with microblogging services, +such as Twitter, Identi.ca and others based on StatusNet application +(former laconica). It aims to be as compact as possible still +providing outstanding usability. + +Requires: qoauth diff --git a/desktop/qtwitter/qtwitter-app_qtwitter-app.pro.patch b/desktop/qtwitter/qtwitter-app_qtwitter-app.pro.patch new file mode 100644 index 0000000000..297b229e51 --- /dev/null +++ b/desktop/qtwitter/qtwitter-app_qtwitter-app.pro.patch @@ -0,0 +1,12 @@ +--- qtwitter-app/qtwitter-app.pro~ 2010-02-13 02:07:27.000000000 +0200 ++++ qtwitter-app/qtwitter-app.pro 2010-02-13 02:07:49.000000000 +0200 +@@ -1,7 +1,8 @@ + TEMPLATE = app + TARGET = qtwitter + +-CONFIG += oauth ++CONFIG += link_pkgconfig ++PKGCONFIG += qoauth + + # sets the TOP variable to the root source code dir + include(../common.pri) diff --git a/desktop/qtwitter/qtwitter.SlackBuild b/desktop/qtwitter/qtwitter.SlackBuild new file mode 100644 index 0000000000..e80b8a9c80 --- /dev/null +++ b/desktop/qtwitter/qtwitter.SlackBuild @@ -0,0 +1,74 @@ +#!/bin/sh + +# Slackware build script for qtwitter + +# Written by Mikko Varri (vmj@linuxbox.fi) +# Public domain. + +PRGNAM=qtwitter +VERSION=${VERSION:-0.10.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +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" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION-src.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 {} \; + +# Let pkg-config to tell the location of qoauth headers, qmake quesses +# wrong. +patch -p0 <$CWD/twitterapi_twitterapi.pro.patch +patch -p0 <$CWD/qtwitter-app_qtwitter-app.pro.patch + +qmake -unix PREFIX=/usr DOCDIR=/usr/doc/$PRGNAM-$VERSION \ + QMAKE_CFLAGS="$SLKCFLAGS" \ + QMAKE_CXXFLAGS="$SLKCFLAGS" \ + $PRGNAM.pro + +make +make install INSTALL_ROOT=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGELOG README LICENSE $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/desktop/qtwitter/qtwitter.info b/desktop/qtwitter/qtwitter.info new file mode 100644 index 0000000000..5a4a6cdde1 --- /dev/null +++ b/desktop/qtwitter/qtwitter.info @@ -0,0 +1,10 @@ +PRGNAM="qtwitter" +VERSION="0.10.0" +HOMEPAGE="http://blog.ayoy.net/qtwitter" +DOWNLOAD="http://files.ayoy.net/qtwitter/release/0.10.0/src/qtwitter-0.10.0-src.tar.gz" +MD5SUM="cf91c87e29ab87d1043056a263c3af56" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Mikko Varri" +EMAIL="vmj@linuxbox.fi" +APPROVED="dsomero" diff --git a/desktop/qtwitter/slack-desc b/desktop/qtwitter/slack-desc new file mode 100644 index 0000000000..bbe05f9864 --- /dev/null +++ b/desktop/qtwitter/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------------------------------------------------------| +qtwitter: qtwitter (microblogging client for StatusNet sites and Twitter) +qtwitter: +qtwitter: qTwitter is an application interacting with microblogging services, +qtwitter: such as Twitter, Identi.ca and others based on StatusNet application +qtwitter: (former laconica). It aims to be as compact as possible still +qtwitter: providing outstanding usability. +qtwitter: +qtwitter: Homepage: http://blog.ayoy.net/qtwitter +qtwitter: +qtwitter: +qtwitter: diff --git a/desktop/qtwitter/twitterapi_twitterapi.pro.patch b/desktop/qtwitter/twitterapi_twitterapi.pro.patch new file mode 100644 index 0000000000..9f30889f7b --- /dev/null +++ b/desktop/qtwitter/twitterapi_twitterapi.pro.patch @@ -0,0 +1,12 @@ +--- twitterapi/twitterapi.pro~ 2010-02-13 02:01:32.000000000 +0200 ++++ twitterapi/twitterapi.pro 2010-02-13 02:02:00.000000000 +0200 +@@ -4,7 +4,8 @@ + include(twitterapi.pri) + + contains( DEFINES, HAVE_OAUTH ) { +- CONFIG += oauth ++ CONFIG += link_pkgconfig ++ PKGCONFIG += qoauth + } + + TEMPLATE = lib -- cgit v1.2.3