summaryrefslogtreecommitdiff
blob: 237718f2994d0174ca20c0f28885b8e2f0d0b559 (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/gnomeicu/gnomeicu-0.98.3.ebuild,v 1.10 2003/10/03 18:43:16 leonardop Exp $

IUSE="nls esd gnome"

inherit debug

S=${WORKDIR}/${P}
DESCRIPTION="Gnome ICQ Client"
SRC_URI="mirror://sourceforge/gnomeicu/${P}.tar.bz2"
HOMEPAGE="http://gnomeicu.sourceforge.net/"

DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r2
	>=sys-libs/gdbm-1.8.0
	=gnome-base/libglade-0.17*
	>=media-libs/gdk-pixbuf-0.9.0
	<net-libs/gnet-2
	gnome? ( =gnome-base/gnome-panel-1.4* )
	esd? ( >=media-sound/esound-0.2.23 )"

	# socks5? ( something to support socks5 in portage is needed )

RDEPEND="nls? ( sys-devel/gettext )"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"

src_compile() {
	local myconf

	myconf="--prefix=/usr"

	use esd || myconf="${myconf} --disable-esd-test"

	# Disabling socks5 support. if socks5 is present
	# in USE, gnomeicu buid will fail. Check ChangeLog
	# for more info about this issue. stroke@gentoo.org
	# use socks5 && myconf="${myconf} --enable-socks5"

	use nls || ( \
		myconf="${myconf} --disable-nls"
		mkdir ./intl
		touch ./intl/libgettext.h
	)

	# remove the panel applet if you dont use gnome,
	# nice hack for gnome2 compability

	use gnome || myconf="${myconf} --disable-applet"

	econf \
		${myconf} --enable-debug || die

	emake || die
}

src_install() {
	make DESTDIR=${D} \
	     sysconfdir=${D}/etc \
	     localstatedir=${D}/var/log	\
	     install || die

	dodoc AUTHORS COPYING CREDITS ChangeLog NEWS README TODO ABOUT-NLS
}