blob: dc41a2e3db2a7d695259d596432cbcad101a18a8 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/ekg2/ekg2-9999.ebuild,v 1.2 2010/12/17 20:08:36 mgorny Exp $
EAPI=2
EGIT_REPO_URI="git://github.com/leafnode/ekg2.git"
inherit autotools autotools-utils git
DESCRIPTION="Text-based, multi-protocol instant messenger"
HOMEPAGE="http://www.ekg2.org"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="expat gadu gif gnutls gpg gpm gsm gtk idn inotify jpeg ncurses nls
oracle perl python readline spell sqlite sqlite3 ssl threads unicode
xosd zlib"
RDEPEND="
gpg? ( app-crypt/gpgme )
gsm? ( media-sound/gsm )
gtk? ( x11-libs/gtk+:2 )
idn? ( net-dns/libidn )
nls? ( virtual/libintl )
oracle? ( dev-db/oracle-instantclient-basic )
perl? ( dev-lang/perl )
python? ( dev-lang/python )
readline? ( sys-libs/readline )
ssl? ( dev-libs/openssl )
xosd? ( x11-libs/xosd )
zlib? ( sys-libs/zlib )
gadu? ( net-libs/libgadu
gif? ( media-libs/giflib )
jpeg? ( media-libs/jpeg ) )
expat? ( dev-libs/expat
gnutls? ( net-libs/gnutls ) )
ncurses? ( sys-libs/ncurses[unicode?]
gpm? ( sys-libs/gpm )
spell? ( app-text/aspell ) )
sqlite3? ( dev-db/sqlite:3 )
!sqlite3? ( sqlite? ( dev-db/sqlite:0 ) )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
DOCS=(
AUTHORS README.md docs/README docs/TODO
docs/events.txt docs/mouse.txt docs/sim.txt docs/voip.txt
docs/themes.txt docs/themes-en.txt
docs/ui-ncurses.txt docs/ui-ncurses-en.txt
)
AUTOTOOLS_IN_SOURCE_BUILD=1
pkg_setup() {
if ! use gtk && ! use ncurses && ! use readline; then
ewarn 'ekg2 is being compiled without any frontend, you should consider'
ewarn 'enabling at least one of following USEflags:'
ewarn ' gtk, ncurses, readline.'
fi
if use gnutls && ! use ssl; then
ewarn 'You have enabled USE=gnutls without USE=ssl. The SSL support'
ewarn 'in ekg2 will be limited to the plugins supporting GnuTLS.'
fi
}
src_prepare() {
autotools-utils_src_prepare
eautoreconf
eautopoint
# Ugly and gives too many files but should work.
find -name '*.c' | sort > po/POTFILES.in
}
src_configure() {
myeconfargs=(
$(use_with expat)
$(use_with gadu libgadu)
$(use_with gif)
$(use_with gnutls libgnutls)
$(use_with gpg)
$(use_with gpm gpm-mouse)
$(use_with gsm libgsm)
$(use_with gtk)
$(use_with idn libidn)
$(use_with inotify)
$(use_with jpeg libjpeg)
$(use_with ncurses)
$(use_with oracle logsoracle)
$(use_with perl)
$(use_with python)
$(use_with readline)
$(use_with spell aspell)
$(use_with sqlite)
$(use_with sqlite3)
$(use_with ssl openssl)
$(use_with threads pthread)
$(use_with xosd libxosd)
$(use_with zlib)
$(use_enable nls)
$(use_enable unicode)
--without-ioctld
--disable-remote
--enable-skip-relative-plugins-dir
)
autotools-utils_src_configure
}
|