summaryrefslogtreecommitdiff
blob: 0a6a24d67135aa9ba9cb0e61d08daeab2e4de400 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Maintainer: Spider <spider@gentoo.org>, Author Bart Verwilst <verwilst@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-im/ickle/ickle-0.3.1.ebuild,v 1.4 2002/06/05 19:37:12 spider Exp $

S=${WORKDIR}/${P}
DESCRIPTION="ICQ 200x compatible ICQ client. limited featureset."
SRC_URI="mirror://sourceforge/ickle/${P}.tar.gz"
HOMEPAGE="http://ickle.sf.net"
SLOT="0"


DEPEND="( >=x11-libs/gtk+-1.2.10
		  <x11-libs/gtk+-1.3.0 )
		( >=x11-libs/gtkmm-1.2.5
		  <x11-libs/gtkmm-1.3.0 )
		( >=dev-libs/libsigc++-1.0.4
		  <dev-libs/libsigc++-1.1.0 )
		>=sys-libs/lib-compat-1.0
		=net-libs/libicq2000-0.3.1
		spell? ( app-text/ispell )
		gnome? ( 
			( >=gnome-base/gnome-applets-1.4.0  
			  <gnome-base/gnome-applets-1.50.0 )
			>= gnome-base/gnome-libs-1.4.1 )"

src_compile() {
	local myflags
	myflags=""
	if [ -z "`use gnome`" ]
	then
		myflags="--without-gnome"
	else
		myflags="--with-gnome"
	fi
	./configure ${myflags} \
		--host=${CHOST} \
		--prefix=/usr \
		--sysconfdir=/etc \
		--infodir=/usr/share/info \
		--localstatedir=/var/lib \
		--mandir=/usr/share/man || die "./configure failed"
	emake || die

}

src_install () {
	make DESTDIR=${D} install || die
	dodoc AUTHORS  COPYING ChangeLog  INSTALL NEWS README THANKS TODO 
}