blob: 95f939c6eaa1c83f72022296ef8aa205e8d33899 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Bart Verwilst <verwilst@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-im/ickle/ickle-0.2.2.ebuild,v 1.1 2002/01/12 13:58:42 verwilst Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Gnome ICQ Client, which uses the ICQ2000 protocol"
SRC_URI="http://prdownloads.sourceforge.net/ickle/${P}.tar.gz"
HOMEPAGE="http://ickle.sourceforge.net"
DEPEND="virtual/glibc
>=x11-libs/gtkmm-1.2.8
>=dev-libs/libsigc++-1.0.4
>=gnome-base/gnome-core-1.4.0
>=gnome-base/gnome-libs-1.4.0"
src_compile() {
./configure --host=${CHOST} --prefix=/usr || die
emake || die
}
src_install() {
make prefix=${D}/usr install || die
}
|