summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-08-01 02:21:17 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-08-01 02:21:17 +0000
commitff5f0dffcea6121ed40c63869ffaf667d682f9ed (patch)
treeec0d6f70c9f384f83ac29b57f2e3f2259a4f60c4 /net-im
parentVersion bump. Remove old. (diff)
downloadgentoo-2-ff5f0dffcea6121ed40c63869ffaf667d682f9ed.tar.gz
gentoo-2-ff5f0dffcea6121ed40c63869ffaf667d682f9ed.tar.bz2
gentoo-2-ff5f0dffcea6121ed40c63869ffaf667d682f9ed.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-im')
-rw-r--r--net-im/licq/ChangeLog6
-rw-r--r--net-im/licq/licq-1.3.8-r1.ebuild102
-rw-r--r--net-im/licq/licq-1.3.9.ebuild97
3 files changed, 5 insertions, 200 deletions
diff --git a/net-im/licq/ChangeLog b/net-im/licq/ChangeLog
index aa3ee91f06b3..281a6efb139a 100644
--- a/net-im/licq/ChangeLog
+++ b/net-im/licq/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-im/licq
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.144 2015/07/30 15:11:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.145 2015/08/01 02:21:17 mrueg Exp $
+
+ 01 Aug 2015; Manuel Rüger <mrueg@gentoo.org> -licq-1.3.8-r1.ebuild,
+ -licq-1.3.9.ebuild:
+ Remove old.
30 Jul 2015; Agostino Sarubbo <ago@gentoo.org> licq-1.8.2.ebuild:
Stable for sparc, wrt bug #535568
diff --git a/net-im/licq/licq-1.3.8-r1.ebuild b/net-im/licq/licq-1.3.8-r1.ebuild
deleted file mode 100644
index b266433ebd09..000000000000
--- a/net-im/licq/licq-1.3.8-r1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2014 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-r1.ebuild,v 1.9 2014/08/05 18:34:05 mrueg Exp $
-
-EAPI=2
-CMAKE_USE_DIR="${S}/plugins/qt4-gui"
-inherit cmake-utils eutils
-
-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 ia64 ppc sparc"
-IUSE="debug linguas_he ncurses msn nls crypt 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? ( dev-qt/qtgui:4 )
- 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_prepare() {
- epatch "${FILESDIR}"/${P}-hebrew.patch \
- "${FILESDIR}"/${P}-memory_leak.patch
-}
-
-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
-
- if use qt4; then
- # http://licq.org/ticket/1662
- mycmakeargs="${mycmakeargs}
- -DWITH_KDE=OFF"
- cmake-utils_src_configure
- fi
-}
-
-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
-}
diff --git a/net-im/licq/licq-1.3.9.ebuild b/net-im/licq/licq-1.3.9.ebuild
deleted file mode 100644
index 39370b6616e5..000000000000
--- a/net-im/licq/licq-1.3.9.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.3.9.ebuild,v 1.5 2014/08/05 18:34:05 mrueg Exp $
-
-EAPI=2
-CMAKE_USE_DIR="${S}/plugins/qt4-gui"
-inherit cmake-utils eutils
-
-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 ~ia64 ~ppc ~sparc"
-IUSE="debug linguas_he ncurses msn nls crypt 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? ( dev-qt/qtgui:4 )
- 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
-
- if use qt4; then
- # http://licq.org/ticket/1662
- mycmakeargs="${mycmakeargs}
- -DWITH_KDE=OFF"
- cmake-utils_src_configure
- fi
-}
-
-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
-}