blob: 7fa2409a4b1eecc677ee993ffd479a69b01fb4d9 (
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
73
74
75
76
77
78
79
80
81
82
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.3.0.ebuild,v 1.1 2008/08/27 14:23:49 jokey Exp $
EAPI=1
inherit cmake-utils eutils
MY_P="${P/_/-}"
DESCRIPTION="Core/client IRC client."
HOMEPAGE="http://quassel-irc.org/"
SRC_URI="http://quassel-irc.org/pub/${MY_P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS=""
SLOT="0"
IUSE="+X +server debug"
RDEPEND="x11-libs/qt-core:4
server? (
x11-libs/qt-sql:4
x11-libs/qt-script:4
)
X? ( x11-libs/qt-gui:4 )"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.4.7"
DOCS="ChangeLog README README.Qtopia"
S=${WORKDIR}/${MY_P}
pkg_setup() {
if ! use server && ! use X; then
eerror "You have to build one or both of quassel client or server."
die "Both server and X USE flags unset."
fi
qt44=$(has_version x11-libs/qt-sql && echo yes || echo no)
if use server && ! built_with_use $([[ ${qt44} == "yes" ]] && echo "x11-libs/qt-sql sqlite" || echo "x11-libs/qt:4 sqlite3"); then
eerror "Quassel require Qt 4 built with SQLite support"
if [[ ${qt44} == "yes" ]]; then
eerror "Please rebuild x11-libs/qt-sql:4 with sqlite USE flag enabled."
die "Missing sqlite support in x11-libs/qt-sql:4"
else
eerror "Please rebuild x11-libs/qt:4 with sqlite3 USE flag enabled."
die "Missing sqlite3 support in x11-libs/qt:4"
fi
fi
}
src_compile() {
local mycmakeargs="
$(cmake-utils_use_want server CORE)
$(cmake-utils_use_want X QTCLIENT)
-DWANT_MONO=OFF
"
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
# Only install the icons if the X client was installed
if use X; then
insinto /usr/share/icons/hicolor
# avoid the connected/ directory, get only the ${size}x${size}
doins -r "${S}"/src/icons/quassel/*x*
fi
if use server; then
newinitd "${FILESDIR}"/quasselcore.init quasselcore
newconfd "${FILESDIR}"/quasselcore.conf quasselcore
fi
}
pkg_postinst() {
if use server; then
ewarn "In order to use the quassel init script you must set the"
ewarn "QUASSEL_USER variable in /etc/conf.d/quasselcore to your username."
fi
}
|