From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/icewm-utils/PKGBUILD | 116 +++++++++++++++++++++ .../icewm-utils/icets-fix-icewmtray-crash.diff | 13 +++ 2 files changed, 129 insertions(+) create mode 100644 community/icewm-utils/PKGBUILD create mode 100644 community/icewm-utils/icets-fix-icewmtray-crash.diff (limited to 'community/icewm-utils') diff --git a/community/icewm-utils/PKGBUILD b/community/icewm-utils/PKGBUILD new file mode 100644 index 000000000..b31b6e324 --- /dev/null +++ b/community/icewm-utils/PKGBUILD @@ -0,0 +1,116 @@ +# $Id: PKGBUILD 27018 2010-09-16 17:37:18Z schuay $ +# Maintainer: Sergej Pupykin +# Contributor: Dominika Solarz + +pkgname=icewm-utils +pkgver=1.0 + +_mcver=2.1 +_tsver=1.4 +_bgsetver=1.3 +_kedver=1.5 +_woedver=1.8 +_sndcfgver=1.3 +_ccver=2.9 +_cursorscfgver=0.6 +_iconcvtver=1.0 +_rrunver=0.5 +_mergeprefsver=0.5 + +pkgrel=5 +pkgdesc="Suite of tools for IceWM" +arch=(i686 x86_64) +license=("GPL") +url="http://icecc.sourceforge.net/" +depends=('qt3' 'python2') +optdepends=('pyqt3' 'gvim') +source=("http://downloads.sourceforge.net/icecc/icemc-$_mcver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icets-$_tsver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icebgset-$_bgsetver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/iceked-$_kedver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icewoed-$_woedver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icesndcfg-$_sndcfgver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icecc-$_ccver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icecursorscfg-$_cursorscfgver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/iceiconcvt-$_iconcvtver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icerrun-$_rrunver.tar.bz2" + "http://downloads.sourceforge.net/sourceforge/icecc/icemergeprefs-$_mergeprefsver.tar.bz2" + icets-fix-icewmtray-crash.diff) +md5sums=('cb2afc6efaa0f9d77b0119b29d528667' + '1d87c93f5cb27da16c90f47531b7fb21' + '7086b771fc7877369924affc5b5f5e41' + '47761a8dc59880ddda2a00de9cd187f5' + '518f05c02cb24a7e36715ce0d0672c8e' + '2113c524ebbbf38ce7eb174b9997c202' + 'e3ddbb3536941745435f727053816865' + '000ec299a83dbae269f2f335910bd50e' + '64463287b6c535b31cb2823d97bfe299' + 'cea2fd7726b9f01b080e3861d325ec24' + 'b34931566da118e7a14ddcb529e739c6' + '5116da930c0063dd8c478dd8e473b08f') + +build() { + mkdir -p $pkgdir/usr/bin + + . /etc/profile.d/qt3.sh + export PATH=/opt/qt/bin:$PATH + + cd $srcdir + # fix default global path to IceWM + for file in icewoed-$_woedver/qcentralwidget.cpp \ + icemc-$_mcver/qcentralwidget.cpp \ + icets-$_tsver/icets.cpp + do + sed -i 's|/usr/local/|/usr/|' $file + done + + # python2 fix + for file in $(find . -name '*.py' -print); do + sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' $file + sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file + done + + + (cd icets-$_tsver && patch -p0 <$srcdir/icets-fix-icewmtray-crash.diff) + + cd $srcdir/icemc-$_mcver + qmake + make + cp icemc $pkgdir/usr/bin/ + + cd $srcdir/icets-$_tsver + qmake + make + cp icets $pkgdir/usr/bin/ + + cd $srcdir/icebgset-$_bgsetver + qmake + make + cp icebgset $pkgdir/usr/bin/ + + cd $srcdir/iceked-$_kedver + qmake + make + cp iceked $pkgdir/usr/bin/ + + cd $srcdir/icecc-$_ccver + qmake + make + cp icecc $pkgdir/usr/bin/ + + cd $srcdir/icesndcfg-$_sndcfgver + qmake + make + cp icesndcfg $pkgdir/usr/bin/ + + cd $srcdir/icewoed-$_woedver + qmake + make + cp icewoed $pkgdir/usr/bin/ + + cp $srcdir/icecursorscfg-$_cursorscfgver/icecurcfg.py $pkgdir/usr/bin/icecurcfg + cp $srcdir/iceiconcvt-$_iconcvtver/iceiconcvt.py $pkgdir/usr/bin/iceiconcvt + cp $srcdir/icemergeprefs-$_mergeprefsver/icemergeprefs.py $pkgdir/usr/bin/icemergeprefs + cp $srcdir/icerrun-$_rrunver/icerrun.py $pkgdir/usr/bin/icerrun + cp $srcdir/icerrun-$_rrunver/icerrrun.py $pkgdir/usr/bin/icerrrun +} diff --git a/community/icewm-utils/icets-fix-icewmtray-crash.diff b/community/icewm-utils/icets-fix-icewmtray-crash.diff new file mode 100644 index 000000000..3a3b62bcc --- /dev/null +++ b/community/icewm-utils/icets-fix-icewmtray-crash.diff @@ -0,0 +1,13 @@ +--- ./icets.cpp.orig 2010-03-22 00:42:19.231913625 +1000 ++++ ./icets.cpp 2010-03-22 00:43:34.611221044 +1000 +@@ -311,7 +311,9 @@ + }/* if(bakFile.exists()) */ + + //restart IceWM +- system("pkill -1 icewm"); ++ // Use killall instead of pkill, because pkill kills all icewm processes ++ // like icewmtray - in this case we lost view of running tray apps ++ system("killall -1 icewm"); + }/* setTheme() */ + + /** -- cgit v1.2.3-54-g00ecf