diff options
Diffstat (limited to 'desktop')
3 files changed, 14 insertions, 14 deletions
diff --git a/desktop/google-gadgets-for-linux/README b/desktop/google-gadgets-for-linux/README index 30eff5e27d..38a914db2d 100644 --- a/desktop/google-gadgets-for-linux/README +++ b/desktop/google-gadgets-for-linux/README @@ -2,10 +2,4 @@ Google Gadgets for Linux provides a platform for running desktop gadgets under Linux, catering to the unique needs of Linux users. It's compatible with the gadgets written for Google Desktop for Windows as well as the Universal Gadgets on iGoogle. Following Linux norms, this project is open-sourced under -the Apache License. - -By default Google Gadgets will build a GTK+ interface. If you also want a GUI -based on the QT library, you will need to have QT4 installed at compile time. -A SlackBuild for QT4 is available at SlackBuilds.org. - -Note: this will not build if webkit is installed. +the Apache License. diff --git a/desktop/google-gadgets-for-linux/google-gadgets-for-linux.SlackBuild b/desktop/google-gadgets-for-linux/google-gadgets-for-linux.SlackBuild index aeaf6c610a..ead159ba65 100644 --- a/desktop/google-gadgets-for-linux/google-gadgets-for-linux.SlackBuild +++ b/desktop/google-gadgets-for-linux/google-gadgets-for-linux.SlackBuild @@ -19,7 +19,7 @@ # Modified by SlackBuilds.org PRGNAM=google-gadgets-for-linux -VERSION=0.10.5 +VERSION=0.11.0 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -31,10 +31,13 @@ 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 -eu @@ -67,11 +70,12 @@ CFLAGS="$SLKCFLAGS $EXTRA_INCLUDES" \ CXXFLAGS="$SLKCFLAGS $EXTRA_INCLUDES" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib$LIBDIRSUFFIX \ --sysconfdir=/etc \ --docdir=/usr/doc/$PRGNAM-$VERSION \ --mandir=/usr/man \ --disable-static \ - --with-browser-plugins-dir=/usr/lib/mozilla/plugins \ + --with-browser-plugins-dir=/usr/lib$LIBDIRSUFFIX/mozilla/plugins \ --build=$ARCH-slackware-linux make @@ -90,4 +94,4 @@ 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.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/desktop/google-gadgets-for-linux/google-gadgets-for-linux.info b/desktop/google-gadgets-for-linux/google-gadgets-for-linux.info index 0c5fdb8aa7..5671621438 100644 --- a/desktop/google-gadgets-for-linux/google-gadgets-for-linux.info +++ b/desktop/google-gadgets-for-linux/google-gadgets-for-linux.info @@ -1,8 +1,10 @@ PRGNAM="google-gadgets-for-linux" -VERSION="0.10.5" +VERSION="0.11.0" HOMEPAGE="http://code.google.com/p/google-gadgets-for-linux/" -DOWNLOAD="http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-0.10.5.tar.bz2" -MD5SUM="fdad6bd761b6c603e457b5d0d92ec2f9" +DOWNLOAD="http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-0.11.0.tar.bz2" +DOWNLOAD_x86_64="" +MD5SUM="714b65738f4edeae361e2b164088c50d" +MD5SUM_x86_64="" MAINTAINER="JK Wood" EMAIL="joshuakwood@gmail.com" -APPROVED="rworkman,michiel,erik" +APPROVED="rworkman,michiel,erik,pprkut" |