blob: 7e01083211216e48082df53743f663de0a4a0934 (
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
|
# Copyright 1999-2002 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.2.ebuild,v 1.3 2002/07/11 06:30:46 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Gnome ICQ Client"
SRC_URI="http://download.sourceforge.net/gnomeicu/${P}.tar.gz"
HOMEPAGE="http://gnomeicu.sourceforge.net/"
SLOT="0"
RDEPEND=">=gnome-base/gnome-libs-1.4.1.2-r2
>=sys-libs/gdbm-1.8.0
>=gnome-base/libglade-0.16
>=media-libs/gdk-pixbuf-0.9.0
>=net-libs/gnet-1.1.0
esd? ( >=media-sound/esound-0.2.23 )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext ) "
src_compile() {
local myconf
if [ -z "`use esd`" ]
then
myconf="--disable-esd-test"
fi
if [ "`use socks5`" ];
then
myconf="${myconf} --enable-socks5"
fi
if [ -z "`use nls`" ]
then
myconf="${myconf} --disable-nls"
mkdir ./intl
touch ./intl/libgettext.h
fi
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
${myconf} || die
emake || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/log \
install || die
dodoc AUTHORS COPYING CREDITS ChangeLog NEWS README TODO ABOUT-NLS
}
|