New commits:
commit a05056fbc4242f3e7997f253bb93c834e222e20b
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
linux: Updated latest 2.4 to 2.4.37.9
commit a33e84622b895cc95e3490f6b2e60b7e78a0f30f
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
linux: Added 2.6.30.10
commit 99bbe790d3b82a4a5cb5764d53855def0cbc1a7b
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
linux: Updated latest PRE_2_6 to 2.6.34-rc5
commit 38028ba2755bb712036362c15eb09cefb1bb1ecb
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
linux: Added 2.6.32.12
commit c181c71ba68bc4492c62c1ec73ead8b847fee18b
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
linux: Updated latest 2.6.33 patch to 2.6.33.3
commit 38b202229bee33ddef4c32e092c90899f09beaa7
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
wine: Possibly better fix allowing '-mfpmath=sse'
commit 41c993a0283fd2009df9e501b8ab8348782845ea
Author: Ladislav Hagara <hgr AT vabo.cz>
Commit: Ladislav Hagara <hgr AT vabo.cz>
commit cd10a9e3bbdef83917e2a25840da9fa0ea448889
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>
kchmviewer4: => 5.1
commit 7473d9403be75798f3f863860dbc894ff28dbcdd
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>
cherokee: removed commented code for dev version
commit 6006df6488e69f1877df2f04ea86ffb260f76d7d
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>
cherokee: => 0.99.45
commit 8583175a63b5bbfc567baf9b55d758e47043db85
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>
mathomatic: => 15.0.7
commit 5049b5c883700f7638192665d18bdbf380d4b173
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>
orc: => 0.4.4
commit 78fd0b5b3c01097feccc9355d1a00737f2da3fae
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>
cola: => 1.4.2
commit 0c13980a48d00a94921d2437cc37d8940b034abb
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>
chat-im/qutim: new spell, multiprotocol Instant messenger based on Qt 4
diff --git a/ChangeLog b/ChangeLog
index 420a67c..91147d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-26 Pol Vinogradov <vin.public AT gmail.com>
+ * chat-im/qutim: new spell, multiprotocol Instant messenger based on
+ Qt 4
+
2010-04-22 Tommy Boatman <tboatman AT sourcemage.org>
* gurus.gpg: added my key (B7D55D32) for signing
diff --git a/chat-im/qutim/BUILD b/chat-im/qutim/BUILD
new file mode 100755
index 0000000..0e8e35b
--- /dev/null
+++ b/chat-im/qutim/BUILD
@@ -0,0 +1,18 @@
+prepare_cmake_flags &&
+qt4_cmake_build &&
+
+if ! list_find "$QUTIM_PLUGINS" "none"
+then
+ for PLUGIN in $QUTIM_PLUGINS; do
+ cd ${SOURCE_DIRECTORY}/plugins/$PLUGIN &&
+ if [[ $PLUGIN == "jabber" ]] || [[ $PLUGIN == "mrim" ]]
+ then
+ mkdir -p build &&
+ cd build &&
+ cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_ROOT/usr $OPTS ../ &&
+ make
+ else
+ qt4_build
+ fi
+ done
+fi
diff --git a/chat-im/qutim/CONFIGURE b/chat-im/qutim/CONFIGURE
new file mode 100755
index 0000000..c9f475d
--- /dev/null
+++ b/chat-im/qutim/CONFIGURE
@@ -0,0 +1,8 @@
+. $GRIMOIRE/config_query_multi.function
+config_query_multi QUTIM_PLUGINS \
+ "What plugins to build?" \
+ all none jabber mrim histman yandexnarod icq irc
vkontakte &&
+if list_find "$QUTIM_PLUGINS" "all"
+then
+ QUTIM_PLUGINS="jabber mrim histman yandexnarod icq irc vkontakte"
+fi
diff --git a/chat-im/qutim/DEPENDS b/chat-im/qutim/DEPENDS
new file mode 100755
index 0000000..a32e790
--- /dev/null
+++ b/chat-im/qutim/DEPENDS
@@ -0,0 +1,20 @@
+depends qt4 &&
+depends cmake &&
+optional_depends gloox \
+ "-DGLOOX_SHARED%BOOL=1" \
+ "-DGLOOX_SHARED%BOOL=0" \
+ "use system gloox" &&
+if list_find "$QUTIM_PLUGINS" "jabber"
+then
+ optional_depends gnutls \
+ "-DGNUTLS%BOOL=1" \
+ "-DGNUTLS%BOOL=0" \
+ "for encryption in jabber plugin" &&
+ if ! is_depends_enabled $SPELL gnutls
+ then
+ optional_depends openssl \
+ "-DOpenSSL%BOOL=1" \
+ "-DOpenSSL%BOOL=0" \
+ "for SSL support in jabber"
+ fi
+fi
diff --git a/chat-im/qutim/DETAILS b/chat-im/qutim/DETAILS
new file mode 100755
index 0000000..d786b98
--- /dev/null
+++ b/chat-im/qutim/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=qutim
+ VERSION=0.2.0
+ SOURCE="${SPELL}-${VERSION}.tar.bz2"
+ SOURCE_URL[0]=http://${SPELL}.org/uploads/src/${SOURCE}
+
SOURCE_HASH=sha512:0abe720a5fa19ed6ea818f10dd3af91d38b977487f7cfaf5bcda5dd6de730e02b5fe1d5cf37bb9d2d17c7d80840b93bd676a2a9996967a76ba36dd24ebb332fb
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://qutim.org/"
+ LICENSE[0]="GPL"
+ ENTERED=20100426
+ KEYWORDS="chat messaging qt"
+ SHORT="Multiprotocol Instant messenger based on Qt 4"
+cat << EOF
+Crossplatform multiprotocol cute plugin-based instant messenger. Supports
ICQ,
+Jabber/ GTalk/Ya.Online/LiveJournal.com, Mail.Ru, IRC networks.
+EOF
diff --git a/chat-im/qutim/HISTORY b/chat-im/qutim/HISTORY
new file mode 100644
index 0000000..436bc20
--- /dev/null
+++ b/chat-im/qutim/HISTORY
@@ -0,0 +1,3 @@
+2010-04-26 Pol Vinogradov <vin.public AT gmail.com>
+ * BUILD, CONFIGURE, DEPENDS, DETAILS, PRE_BUILD, INSTALL: spell
created
+
diff --git a/chat-im/qutim/INSTALL b/chat-im/qutim/INSTALL
new file mode 100755
index 0000000..2ccc0e3
--- /dev/null
+++ b/chat-im/qutim/INSTALL
@@ -0,0 +1,17 @@
+cd ${SOURCE_DIRECTORY} &&
+
+install -v build/${SPELL} -D ${INSTALL_ROOT}/usr/bin/${SPELL} &&
+install -v share/${SPELL}.desktop -D
${INSTALL_ROOT}/usr/share/applications/${SPELL}.desktop &&
+install -v icons/${SPELL}_64.png -D
${INSTALL_ROOT}/usr/share/icons/hicolor/64x64/apps/${SPELL}.png &&
+install -v icons/${SPELL}.xpm -D
${INSTALL_ROOT}/usr/share/pixmaps/${SPELL}.xpm &&
+
+
+if ! list_find "$QUTIM_PLUGINS" "none"
+then
+ mkdir -p ${INSTALL_ROOT}/usr/lib/${SPELL} &&
+ install -v $(find plugins -type f -executable -iname "*.so")
${INSTALL_ROOT}/usr/lib/${SPELL}
+fi &&
+
+for l in "bg_BG cs_CZ de_DE ru uk_UA"; do
+ install -v ${SOURCE_DIRECTORY}/languages/${l}/binaries -d
${INSTALL_ROOT}/usr/share/${SPELL}/languages/${l}
+done
diff --git a/chat-im/qutim/PRE_BUILD b/chat-im/qutim/PRE_BUILD
new file mode 100755
index 0000000..9b18d68
--- /dev/null
+++ b/chat-im/qutim/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+cd ${SOURCE_DIRECTORY} &&
+
+sed -i "s:#include <time.h>:#include <time.h>\n#include <unistd.h>:"
src/3rdparty/qtsolutions/qtlocalpeer.cpp &&
+sed -i "s:languages:${INSTALL_ROOT}/usr/share/${SPELL}/languages:"
src/qutim.cpp
\ No newline at end of file
diff --git a/collab/cola/DETAILS b/collab/cola/DETAILS
index 43c669c..f3129c5 100755
--- a/collab/cola/DETAILS
+++ b/collab/cola/DETAILS
@@ -1,8 +1,8 @@
SPELL=cola
- VERSION=1.4.1.1
- SOURCE="${SPELL}-${VERSION}-src.tar.gz"
+ VERSION=1.4.2
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
SOURCE_URL[0]=http://${SPELL}.tuxfamily.org/releases/${SOURCE}
-
SOURCE_HASH=sha512:48ef7931a1d13c143122cd77bbdc4029a904e312c411eceea253a1e37d84b715159351e4dc707ca4590fecb8c03ee1559ac8aff2e84495e9a33fa660b5121dc9
+
SOURCE_HASH=sha512:8e484cbfbeb9e9cd59ce4e27a7ade62d62a323ab46231283ade808444d9a595c74113688a540f657bc50b8ca7417a3297d2cdd2c3dd7ae882bc0ebf0cbc9278c
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://cola.tuxfamily.org"
LICENSE[0]=GPL2
diff --git a/collab/cola/HISTORY b/collab/cola/HISTORY
index 49ed0e7..43ca28d 100644
--- a/collab/cola/HISTORY
+++ b/collab/cola/HISTORY
@@ -1,3 +1,7 @@
+2010-04-26 Bor Kraljič <pyrobor AT ver.si>
+ * DETAILS: Fixed SOURCE
+ updated spell to 1.4.2
+
2009-12-15 Bor Kraljič <pyrobor AT ver.si>
* DETAILS: updated spell to 1.4.1.1