diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2013-04-16 14:51:03 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2013-04-16 14:51:03 +0000 |
commit | 41dde7764742e42e73189d8e6ac9b2de1c1b7870 (patch) | |
tree | 37d40ed47bef3fe192c6ad312dfe3a2fe2d58c0f /net-im | |
parent | fix arch logic, fixes #466024 (diff) | |
download | gentoo-2-41dde7764742e42e73189d8e6ac9b2de1c1b7870.tar.gz gentoo-2-41dde7764742e42e73189d8e6ac9b2de1c1b7870.tar.bz2 gentoo-2-41dde7764742e42e73189d8e6ac9b2de1c1b7870.zip |
Version bump
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/licq/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/licq/licq-1.7.1.ebuild | 81 |
2 files changed, 87 insertions, 1 deletions
diff --git a/net-im/licq/ChangeLog b/net-im/licq/ChangeLog index 0dc9f00421f0..b3bd02116f0f 100644 --- a/net-im/licq/ChangeLog +++ b/net-im/licq/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/licq # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.120 2013/03/02 22:52:38 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.121 2013/04/16 14:51:03 polynomial-c Exp $ + +*licq-1.7.1 (16 Apr 2013) + + 16 Apr 2013; Lars Wendler <polynomial-c@gentoo.org> +licq-1.7.1.ebuild: + Non-maintainer commit: Version bump. 02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> licq-1.3.8-r1.ebuild, licq-1.3.9.ebuild, licq-1.7.0.ebuild: diff --git a/net-im/licq/licq-1.7.1.ebuild b/net-im/licq/licq-1.7.1.ebuild new file mode 100644 index 000000000000..84b4d51aa8a8 --- /dev/null +++ b/net-im/licq/licq-1.7.1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.7.1.ebuild,v 1.1 2013/04/16 14:51:03 polynomial-c Exp $ + +EAPI="5" + +inherit cmake-utils eutils flag-o-matic + +DESCRIPTION="ICQ Client with v8 support" +HOMEPAGE="http://www.licq.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc linguas_he nls socks5 ssl xosd aosd jabber qt4 msn ncurses" + +RDEPEND=">=app-crypt/gpgme-1 + jabber? ( net-libs/gloox ) + qt4? ( dev-qt/qtgui:4 ) + ssl? ( >=dev-libs/openssl-0.9.5a ) + ncurses? ( + sys-libs/ncurses + dev-libs/cdk + ) + xosd? ( x11-libs/xosd ) + aosd? ( x11-libs/libaosd )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + nls? ( sys-devel/gettext ) + dev-libs/boost" + +src_prepare() { + #epatch "${FILESDIR}"/${PN}-1.5.1-find-libcdk.patch + + local licq_plugins="auto-reply rms" + use ncurses && licq_plugins+=" console" + use msn && licq_plugins+=" msn" + use xosd && licq_plugins+=" osd" + use aosd && licq_plugins+=" aosd" + use jabber && licq_plugins+=" jabber" + use qt4 && licq_plugins+=" qt4-gui" + + local plugins="" x + for x in ${licq_plugins}; do + plugins+=" ${x}\/CMakeLists.txt" + done + + sed -i -e "s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/" plugins/CMakeLists.txt +} + +pkg_setup() { + # crutch + append-flags -pthread +} + +src_configure() { + local myopts="-DCMAKE_BUILD_TYPE=$(use debug && echo 'Debug' || echo 'Release')" + mycmakeargs="$myopts + $(cmake-utils_use linguas_he USE_HEBREW) + $(cmake-utils_use socks5 USE_SOCKS5) + $(cmake-utils_use ssl USE_OPENSSL) + $(cmake-utils_use nls ENABLE_NLS) + -DUSE_FIFO=ON + -DBUILD_PLUGINS=ON" + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + dodoc README + + docinto doc + dodoc doc/* + + use ssl && dodoc README.OPENSSL + + exeinto /usr/share/${PN}/upgrade + doexe upgrade/*.pl || die +} |