summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-07-06 22:22:26 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2010-07-06 22:22:26 +0000
commit8f0788c7bd042e31d516600a0d7afa60d9173d5b (patch)
tree8fd9b80b2d7e615fc8d5ba8dc0a30fd525954590 /net-im
parentRemove old ebuilds (diff)
downloadgentoo-2-8f0788c7bd042e31d516600a0d7afa60d9173d5b.tar.gz
gentoo-2-8f0788c7bd042e31d516600a0d7afa60d9173d5b.tar.bz2
gentoo-2-8f0788c7bd042e31d516600a0d7afa60d9173d5b.zip
Remove old ebuilds
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-im')
-rw-r--r--net-im/qutim/ChangeLog5
-rw-r--r--net-im/qutim/qutim-0.2.0.ebuild72
2 files changed, 4 insertions, 73 deletions
diff --git a/net-im/qutim/ChangeLog b/net-im/qutim/ChangeLog
index f0fc341ef335..450d4cc75e1a 100644
--- a/net-im/qutim/ChangeLog
+++ b/net-im/qutim/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-im/qutim
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v 1.8 2010/05/18 13:08:26 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/qutim/ChangeLog,v 1.9 2010/07/06 22:22:26 hwoarang Exp $
+
+ 06 Jul 2010; Markos Chandras <hwoarang@gentoo.org> -qutim-0.2.0.ebuild:
+ Remove old ebuilds
18 May 2010; Markos Chandras <hwoarang@gentoo.org> qutim-0.2.0-r3.ebuild:
Stable on amd64 wrt bug #309639
diff --git a/net-im/qutim/qutim-0.2.0.ebuild b/net-im/qutim/qutim-0.2.0.ebuild
deleted file mode 100644
index 7cc791bae562..000000000000
--- a/net-im/qutim/qutim-0.2.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/qutim/qutim-0.2.0.ebuild,v 1.4 2010/04/29 08:13:23 hwoarang Exp $
-
-EAPI="2"
-
-inherit eutils qt4-r2 cmake-utils
-MY_PN="${PN/im/IM}"
-
-DESCRIPTION="New Qt4-based Instant Messenger (ICQ)."
-HOMEPAGE="http://www.qutim.org"
-LICENSE="GPL-2"
-SRC_URI="http://qutim.org/uploads/src/${P}.tar.bz2"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug histman icq irc jabber gnutls mrim ssl vkontakte yandexnarod"
-
-DEPEND="x11-libs/qt-gui:4[debug?]
- x11-libs/qt-webkit:4
- || ( media-sound/phonon x11-libs/qt-phonon )
- jabber? ( ssl? ( dev-libs/openssl )
- gnutls? ( net-libs/gnutls ) )"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- # build main executable
- cmake-utils_src_compile
-
- # build protocol support
- if use jabber; then
- cd "${S}"/plugins/jabber || die
- mkdir build
- cd build
- cmake -C "${TMPDIR}"/gentoo_common_config.cmake \
- $(cmake-utils_use ssl OpenSSL) \
- $(cmake-utils_use gnutls GNUTLS) ../ || die
- emake || die
- fi
- # build mrim
- if use mrim; then
- cd "${S}"/plugins/mrim || die
- mkdir build
- cd build
- cmake -C "${TMPDIR}"/gentoo_common_config.cmake ../ || die
- emake || die "failed to compile mrim plugin"
- fi
- # Qt4 based projects so I shall use eqmake4
- cd "${S}"/plugins || die
- for i in histman yandexnarod icq irc vkontakte;do
- if use ${i}; then
- cd "${i}"
- einfo "now building ${i}-plugin"
- eqmake4 ${i}.pro
- emake || die "failed to compile ${i} plugin"
- cd ..
- fi
- done
-}
-
-src_install(){
- # not recommended by upstream and probably broken
- #cmake-utils_src_install
- dobin "${WORKDIR}/${P}_build/${PN}" || die
-
- cd "${S}"/plugins || die
- insinto "/usr/$(get_libdir)/qutim"
- doins $(find . -type f -executable -iname "*.so") || die
- doicon "${S}"/icons/${PN}_64.png || die "Failed to install icon"
- make_desktop_entry ${PN} ${MY_PN} ${PN}_64 \
- "Network;InstantMessaging;Qt" || die "make_desktop_entry failed"
-}