blob: 75f72017db1ce259bed4c7d6328a1aeb9f04e2c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# 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.3 2010/03/09 11:57:42 abcd Exp $
EAPI="2"
inherit eutils qt4 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"
}
|