[arch-commits] Commit in licq/repos (3 files)
Date: Tuesday, January 15, 2019 @ 08:43:14 Author: foutrelis Revision: 344136 archrelease: copy trunk to staging-x86_64 Added: licq/repos/staging-x86_64/ licq/repos/staging-x86_64/PKGBUILD (from rev 344135, licq/trunk/PKGBUILD) licq/repos/staging-x86_64/licq-gcc6.patch (from rev 344135, licq/trunk/licq-gcc6.patch) -+ PKGBUILD| 52 licq-gcc6.patch | 24 2 files changed, 76 insertions(+) Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 344135, licq/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2019-01-15 08:43:14 UTC (rev 344136) @@ -0,0 +1,52 @@ +# Maintainer: Juergen Hoetzel + +pkgname=licq +pkgver=1.8.2 +pkgrel=22 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('x86_64') +url="http://www.licq.org"; +license=('GPL') +depends=('boost-libs' 'gpgme' 'libxss' 'qt4' 'openssl-1.0') +makedepends=('cmake' 'boost' 'optipng') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2 licq-gcc6.patch) +md5sums=('46af2bc95865ee61a103d27812fe6e6a' + '8af303d8d31573246470f0ba0ccba428') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + + mkdir build + + # Fix invalid PNG images to work with libpng 1.6 + # https://github.com/licq-im/licq/pull/32 + optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png + + # Fix build with GCC 6 + patch -p1 -i ../licq-gcc6.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd + + local plugins="" _plugin + for _plugin in ${licq_plugins}; do +plugins+=" ${_plugin}\/CMakeLists.txt" + done + sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" plugins/CMakeLists.txt + + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON -DBUILD_TESTS=OFF \ +-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \ +-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \ +-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ +.. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} Copied: licq/repos/staging-x86_64/licq-gcc6.patch (from rev 344135, licq/trunk/licq-gcc6.patch) === --- staging-x86_64/licq-gcc6.patch (rev 0) +++ staging-x86_64/licq-gcc6.patch 2019-01-15 08:43:14 UTC (rev 344136) @@ -0,0 +1,24 @@ +--- licq-1.8.2/src/licq.cpp.orig 2016-05-12 15:27:35.927500283 + licq-1.8.2/src/licq.cpp2016-05-12 15:28:01.107415744 + +@@ -568,18 +568,18 @@ + if (!licqConf.get(szKey, pluginName)) + continue; + +-bool loaded = LoadPlugin(pluginName, argc, argv); ++bool loaded= (bool)LoadPlugin(pluginName, argc, argv); + + // Make upgrade from 1.3.x and older easier by automatically switching from kde/qt-gui to kde4/qt4-gui + if (!loaded && pluginName == "kde-gui") + { + gLog.warning(tr("Plugin kde-gui is no longer available, trying to load kde4-gui instead.")); +- loaded = LoadPlugin("kde4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("kde4-gui", argc, argv); + } + if (!loaded && (pluginName == "qt-gui" || pluginName == "kde-gui")) + { + gLog.warning(tr("Plugin %s is no longer available, trying to load qt4-gui instead."), pluginName.c_str()); +- loaded = LoadPlugin("qt4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("qt4-gui", argc, argv); + } + + if (!loaded)
[arch-commits] Commit in licq/repos (3 files)
Date: Tuesday, September 18, 2018 @ 02:36:40 Author: foutrelis Revision: 334838 archrelease: copy trunk to staging-x86_64 Added: licq/repos/staging-x86_64/ licq/repos/staging-x86_64/PKGBUILD (from rev 334837, licq/trunk/PKGBUILD) licq/repos/staging-x86_64/licq-gcc6.patch (from rev 334837, licq/trunk/licq-gcc6.patch) -+ PKGBUILD| 52 licq-gcc6.patch | 24 2 files changed, 76 insertions(+) Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 334837, licq/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2018-09-18 02:36:40 UTC (rev 334838) @@ -0,0 +1,52 @@ +# Maintainer: Juergen Hoetzel + +pkgname=licq +pkgver=1.8.2 +pkgrel=21 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('x86_64') +url="http://www.licq.org"; +license=('GPL') +depends=('boost-libs' 'gpgme' 'libxss' 'qt4' 'openssl-1.0') +makedepends=('cmake' 'boost' 'optipng') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2 licq-gcc6.patch) +md5sums=('46af2bc95865ee61a103d27812fe6e6a' + '8af303d8d31573246470f0ba0ccba428') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + + mkdir build + + # Fix invalid PNG images to work with libpng 1.6 + # https://github.com/licq-im/licq/pull/32 + optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png + + # Fix build with GCC 6 + patch -p1 -i ../licq-gcc6.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd + + local plugins="" _plugin + for _plugin in ${licq_plugins}; do +plugins+=" ${_plugin}\/CMakeLists.txt" + done + sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" plugins/CMakeLists.txt + + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON -DBUILD_TESTS=OFF \ +-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \ +-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \ +-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ +.. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} Copied: licq/repos/staging-x86_64/licq-gcc6.patch (from rev 334837, licq/trunk/licq-gcc6.patch) === --- staging-x86_64/licq-gcc6.patch (rev 0) +++ staging-x86_64/licq-gcc6.patch 2018-09-18 02:36:40 UTC (rev 334838) @@ -0,0 +1,24 @@ +--- licq-1.8.2/src/licq.cpp.orig 2016-05-12 15:27:35.927500283 + licq-1.8.2/src/licq.cpp2016-05-12 15:28:01.107415744 + +@@ -568,18 +568,18 @@ + if (!licqConf.get(szKey, pluginName)) + continue; + +-bool loaded = LoadPlugin(pluginName, argc, argv); ++bool loaded= (bool)LoadPlugin(pluginName, argc, argv); + + // Make upgrade from 1.3.x and older easier by automatically switching from kde/qt-gui to kde4/qt4-gui + if (!loaded && pluginName == "kde-gui") + { + gLog.warning(tr("Plugin kde-gui is no longer available, trying to load kde4-gui instead.")); +- loaded = LoadPlugin("kde4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("kde4-gui", argc, argv); + } + if (!loaded && (pluginName == "qt-gui" || pluginName == "kde-gui")) + { + gLog.warning(tr("Plugin %s is no longer available, trying to load qt4-gui instead."), pluginName.c_str()); +- loaded = LoadPlugin("qt4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("qt4-gui", argc, argv); + } + + if (!loaded)
[arch-commits] Commit in licq/repos (3 files)
Date: Thursday, May 31, 2018 @ 02:47:04 Author: felixonmars Revision: 325307 archrelease: copy trunk to staging-x86_64 Added: licq/repos/staging-x86_64/ licq/repos/staging-x86_64/PKGBUILD (from rev 325306, licq/trunk/PKGBUILD) licq/repos/staging-x86_64/licq-gcc6.patch (from rev 325306, licq/trunk/licq-gcc6.patch) -+ PKGBUILD| 53 + licq-gcc6.patch | 24 2 files changed, 77 insertions(+) Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 325306, licq/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2018-05-31 02:47:04 UTC (rev 325307) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Juergen Hoetzel + +pkgname=licq +pkgver=1.8.2 +pkgrel=20 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('x86_64') +url="http://www.licq.org"; +license=('GPL') +depends=('boost-libs' 'gpgme' 'libxss' 'qt4' 'openssl-1.0') +makedepends=('cmake' 'boost' 'optipng') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2 licq-gcc6.patch) +md5sums=('46af2bc95865ee61a103d27812fe6e6a' + '8af303d8d31573246470f0ba0ccba428') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + + mkdir build + + # Fix invalid PNG images to work with libpng 1.6 + # https://github.com/licq-im/licq/pull/32 + optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png + + # Fix build with GCC 6 + patch -p1 -i ../licq-gcc6.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd + + local plugins="" _plugin + for _plugin in ${licq_plugins}; do +plugins+=" ${_plugin}\/CMakeLists.txt" + done + sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" plugins/CMakeLists.txt + + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON -DBUILD_TESTS=OFF \ +-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \ +-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \ +-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ +.. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} Copied: licq/repos/staging-x86_64/licq-gcc6.patch (from rev 325306, licq/trunk/licq-gcc6.patch) === --- staging-x86_64/licq-gcc6.patch (rev 0) +++ staging-x86_64/licq-gcc6.patch 2018-05-31 02:47:04 UTC (rev 325307) @@ -0,0 +1,24 @@ +--- licq-1.8.2/src/licq.cpp.orig 2016-05-12 15:27:35.927500283 + licq-1.8.2/src/licq.cpp2016-05-12 15:28:01.107415744 + +@@ -568,18 +568,18 @@ + if (!licqConf.get(szKey, pluginName)) + continue; + +-bool loaded = LoadPlugin(pluginName, argc, argv); ++bool loaded= (bool)LoadPlugin(pluginName, argc, argv); + + // Make upgrade from 1.3.x and older easier by automatically switching from kde/qt-gui to kde4/qt4-gui + if (!loaded && pluginName == "kde-gui") + { + gLog.warning(tr("Plugin kde-gui is no longer available, trying to load kde4-gui instead.")); +- loaded = LoadPlugin("kde4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("kde4-gui", argc, argv); + } + if (!loaded && (pluginName == "qt-gui" || pluginName == "kde-gui")) + { + gLog.warning(tr("Plugin %s is no longer available, trying to load qt4-gui instead."), pluginName.c_str()); +- loaded = LoadPlugin("qt4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("qt4-gui", argc, argv); + } + + if (!loaded)
[arch-commits] Commit in licq/repos (3 files)
Date: Saturday, December 30, 2017 @ 23:18:53 Author: bpiotrowski Revision: 313816 archrelease: copy trunk to staging-x86_64 Added: licq/repos/staging-x86_64/ licq/repos/staging-x86_64/PKGBUILD (from rev 313815, licq/trunk/PKGBUILD) licq/repos/staging-x86_64/licq-gcc6.patch (from rev 313815, licq/trunk/licq-gcc6.patch) -+ PKGBUILD| 53 + licq-gcc6.patch | 24 2 files changed, 77 insertions(+) Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 313815, licq/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2017-12-30 23:18:53 UTC (rev 313816) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Juergen Hoetzel + +pkgname=licq +pkgver=1.8.2 +pkgrel=19 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('x86_64') +url="http://www.licq.org"; +license=('GPL') +depends=('boost-libs' 'gpgme' 'libxss' 'qt4' 'openssl-1.0') +makedepends=('cmake' 'boost' 'optipng') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2 licq-gcc6.patch) +md5sums=('46af2bc95865ee61a103d27812fe6e6a' + '8af303d8d31573246470f0ba0ccba428') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + + mkdir build + + # Fix invalid PNG images to work with libpng 1.6 + # https://github.com/licq-im/licq/pull/32 + optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png + + # Fix build with GCC 6 + patch -p1 -i ../licq-gcc6.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + local licq_plugins="auto-reply icq rms msn qt4-gui" # osd jabber aosd + + local plugins="" _plugin + for _plugin in ${licq_plugins}; do +plugins+=" ${_plugin}\/CMakeLists.txt" + done + sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" plugins/CMakeLists.txt + + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON -DBUILD_TESTS=OFF \ +-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \ +-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \ +-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ +.. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} Copied: licq/repos/staging-x86_64/licq-gcc6.patch (from rev 313815, licq/trunk/licq-gcc6.patch) === --- staging-x86_64/licq-gcc6.patch (rev 0) +++ staging-x86_64/licq-gcc6.patch 2017-12-30 23:18:53 UTC (rev 313816) @@ -0,0 +1,24 @@ +--- licq-1.8.2/src/licq.cpp.orig 2016-05-12 15:27:35.927500283 + licq-1.8.2/src/licq.cpp2016-05-12 15:28:01.107415744 + +@@ -568,18 +568,18 @@ + if (!licqConf.get(szKey, pluginName)) + continue; + +-bool loaded = LoadPlugin(pluginName, argc, argv); ++bool loaded= (bool)LoadPlugin(pluginName, argc, argv); + + // Make upgrade from 1.3.x and older easier by automatically switching from kde/qt-gui to kde4/qt4-gui + if (!loaded && pluginName == "kde-gui") + { + gLog.warning(tr("Plugin kde-gui is no longer available, trying to load kde4-gui instead.")); +- loaded = LoadPlugin("kde4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("kde4-gui", argc, argv); + } + if (!loaded && (pluginName == "qt-gui" || pluginName == "kde-gui")) + { + gLog.warning(tr("Plugin %s is no longer available, trying to load qt4-gui instead."), pluginName.c_str()); +- loaded = LoadPlugin("qt4-gui", argc, argv); ++ loaded= (bool)LoadPlugin("qt4-gui", argc, argv); + } + + if (!loaded)
[arch-commits] Commit in licq/repos (3 files)
Date: Monday, March 5, 2012 @ 03:56:28 Author: ibiru Revision: 152218 db-move: moved licq from [testing] to [extra] (x86_64) Added: licq/repos/extra-x86_64/PKGBUILD (from rev 152196, licq/repos/testing-x86_64/PKGBUILD) Deleted: licq/repos/extra-x86_64/PKGBUILD licq/repos/testing-x86_64/ --+ PKGBUILD | 80 ++--- 1 file changed, 40 insertions(+), 40 deletions(-) Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2012-03-05 08:56:26 UTC (rev 152217) +++ extra-x86_64/PKGBUILD 2012-03-05 08:56:28 UTC (rev 152218) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Juergen Hoetzel - -pkgname=licq -pkgver=1.6.0 -pkgrel=3 -pkgdesc="Advanced graphical ICQ clone and more for Unix" -arch=('i686' 'x86_64') -url="http://www.licq.org"; -license=('GPL') -depends=('boost-libs' 'gpgme' 'libxss' 'qt') -makedepends=('cmake' 'boost') -options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2) -md5sums=('383153697e281a0b1b4ff008936731b8') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # licq - mkdir build - cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr .. - make - - # qt4-gui - cd ../plugins/qt4-gui - mkdir build - cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake" .. - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}/build" - make DESTDIR="${pkgdir}" install - - cd ../plugins/qt4-gui/build - make DESTDIR="${pkgdir}" install -} Copied: licq/repos/extra-x86_64/PKGBUILD (from rev 152196, licq/repos/testing-x86_64/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2012-03-05 08:56:28 UTC (rev 152218) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Juergen Hoetzel + +pkgname=licq +pkgver=1.6.0 +pkgrel=4 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('i686' 'x86_64') +url="http://www.licq.org"; +license=('GPL') +depends=('boost-libs' 'gpgme' 'libxss' 'qt') +makedepends=('cmake' 'boost') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2) +md5sums=('383153697e281a0b1b4ff008936731b8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # licq + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make + + # qt4-gui + cd ../plugins/qt4-gui + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake" .. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install + + cd ../plugins/qt4-gui/build + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in licq/repos (3 files)
Date: Monday, March 5, 2012 @ 03:56:26 Author: ibiru Revision: 152217 db-move: moved licq from [testing] to [extra] (i686) Added: licq/repos/extra-i686/PKGBUILD (from rev 152196, licq/repos/testing-i686/PKGBUILD) Deleted: licq/repos/extra-i686/PKGBUILD licq/repos/testing-i686/ --+ PKGBUILD | 80 ++--- 1 file changed, 40 insertions(+), 40 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2012-03-05 08:56:15 UTC (rev 152216) +++ extra-i686/PKGBUILD 2012-03-05 08:56:26 UTC (rev 152217) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Juergen Hoetzel - -pkgname=licq -pkgver=1.6.0 -pkgrel=3 -pkgdesc="Advanced graphical ICQ clone and more for Unix" -arch=('i686' 'x86_64') -url="http://www.licq.org"; -license=('GPL') -depends=('boost-libs' 'gpgme' 'libxss' 'qt') -makedepends=('cmake' 'boost') -options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2) -md5sums=('383153697e281a0b1b4ff008936731b8') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # licq - mkdir build - cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr .. - make - - # qt4-gui - cd ../plugins/qt4-gui - mkdir build - cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake" .. - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}/build" - make DESTDIR="${pkgdir}" install - - cd ../plugins/qt4-gui/build - make DESTDIR="${pkgdir}" install -} Copied: licq/repos/extra-i686/PKGBUILD (from rev 152196, licq/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2012-03-05 08:56:26 UTC (rev 152217) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Juergen Hoetzel + +pkgname=licq +pkgver=1.6.0 +pkgrel=4 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('i686' 'x86_64') +url="http://www.licq.org"; +license=('GPL') +depends=('boost-libs' 'gpgme' 'libxss' 'qt') +makedepends=('cmake' 'boost') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2) +md5sums=('383153697e281a0b1b4ff008936731b8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # licq + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make + + # qt4-gui + cd ../plugins/qt4-gui + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake" .. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install + + cd ../plugins/qt4-gui/build + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in licq/repos (3 files)
Date: Saturday, March 3, 2012 @ 03:09:05 Author: ibiru Revision: 151821 db-move: moved licq from [staging] to [testing] (x86_64) Added: licq/repos/testing-x86_64/ licq/repos/testing-x86_64/PKGBUILD (from rev 151799, licq/repos/staging-x86_64/PKGBUILD) Deleted: licq/repos/staging-x86_64/ --+ PKGBUILD | 40 1 file changed, 40 insertions(+) Copied: licq/repos/testing-x86_64/PKGBUILD (from rev 151799, licq/repos/staging-x86_64/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2012-03-03 08:09:05 UTC (rev 151821) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Juergen Hoetzel + +pkgname=licq +pkgver=1.6.0 +pkgrel=2 +pkgdesc="Advanced graphical ICQ clone and more for Unix" +arch=('i686' 'x86_64') +url="http://www.licq.org"; +license=('GPL') +depends=('libxss' 'qt' 'openssl') +makedepends=('cmake' 'boost') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2) +md5sums=('383153697e281a0b1b4ff008936731b8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # licq + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make + + # qt4-gui + cd ../plugins/qt4-gui + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MODULE_PATH="${srcdir}/${pkgname}-${pkgver}/cmake" .. + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install + + cd ../plugins/qt4-gui/build + make DESTDIR="${pkgdir}" install +}