diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-14 14:22:08 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-14 14:22:08 +0000 |
commit | 91b7cf21b94ea6de5f37fc6b65f7bbb697635013 (patch) | |
tree | 3b4d3f0af94c957af7001ec0690970993fc8206d /net-im/licq | |
parent | Fixed lcms and jpeg USE flags handling, bug #296826, thank Piotr Radkowski fo... (diff) | |
download | gentoo-2-91b7cf21b94ea6de5f37fc6b65f7bbb697635013.tar.gz gentoo-2-91b7cf21b94ea6de5f37fc6b65f7bbb697635013.tar.bz2 gentoo-2-91b7cf21b94ea6de5f37fc6b65f7bbb697635013.zip |
Version bump wrt #296880, thanks to Andy Crook for reporting.
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'net-im/licq')
-rw-r--r-- | net-im/licq/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/licq/licq-1.3.8.ebuild | 96 |
2 files changed, 102 insertions, 1 deletions
diff --git a/net-im/licq/ChangeLog b/net-im/licq/ChangeLog index f181e4a4003b..e31372ca07d9 100644 --- a/net-im/licq/ChangeLog +++ b/net-im/licq/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/licq # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.110 2009/12/11 15:11:08 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.111 2009/12/14 14:22:08 ssuominen Exp $ + +*licq-1.3.8 (14 Dec 2009) + + 14 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> +licq-1.3.8.ebuild: + Version bump wrt #296880, thanks to Andy Crook for reporting. 11 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> licq-1.3.6.ebuild: amd64 stable wrt #274070 diff --git a/net-im/licq/licq-1.3.8.ebuild b/net-im/licq/licq-1.3.8.ebuild new file mode 100644 index 000000000000..c2b11583cc91 --- /dev/null +++ b/net-im/licq/licq-1.3.8.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.3.8.ebuild,v 1.1 2009/12/14 14:22:08 ssuominen Exp $ + +EAPI=2 +CMAKE_USE_DIR="${S}/plugins/qt4-gui" +inherit cmake-utils + +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="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="debug linguas_he ncurses msn nls crypt kde socks5 ssl qt4 xosd" + +RDEPEND="crypt? ( >=app-crypt/gpgme-1 ) + ncurses? ( sys-libs/ncurses + dev-libs/cdk ) + ssl? ( >=dev-libs/openssl-0.9.5a ) + qt4? ( x11-libs/qt-gui:4 + kde? ( >=kde-base/kdelibs-4 + !kde-base/kdelibs[kdeprefix] ) ) + xosd? ( x11-libs/xosd )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + dev-libs/boost" + +pkg_setup() { + licq_plugins="auto-reply email rms" + use ncurses && licq_plugins="${licq_plugins} console" + use msn && licq_plugins="${licq_plugins} msn" + use xosd && licq_plugins="${licq_plugins} osd" +} + +src_configure() { + econf \ + $(use_enable linguas_he hebrew) \ + --disable-dependency-tracking \ + $(use_enable debug) \ + $(use_enable socks5) \ + $(use_enable ssl openssl) \ + $(use_enable nls) + + local x + for x in ${licq_plugins}; do + cd "${S}"/plugins/${x} + econf + done + + mycmakeargs="${mycmakeargs} + $(cmake-utils_use_with kde)" + use qt4 && cmake-utils_src_configure +} + +src_compile() { + emake || die + + local x + for x in ${licq_plugins}; do + cd "${S}"/plugins/${x} + emake || die + done + + use qt4 && cmake-utils_src_compile +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc README + + docinto doc + dodoc doc/* + + use crypt && dodoc README.GPG + use ssl && dodoc README.OPENSSL + + exeinto /usr/share/${PN}/upgrade + doexe upgrade/*.pl || die + + local x + for x in ${licq_plugins}; do + cd "${S}"/plugins/${x} + emake DESTDIR="${D}" install || die + docinto ${x} + dodoc README* *.conf + done + + if use qt4; then + docinto qt4 + DOCS="README" cmake-utils_src_install + fi + + rm -rf "${D}"/var +} |