blob: c8cd9cf860083bea8f4c29f1f40b36d77da55f54 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ben Lutgens <blutgens@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-im/everybuddy/everybuddy-0.2.1.ebuild,v 1.3 2001/06/24 20:13:37 achim Exp $
A=everybuddy-0.2.1beta3.tar.gz
S=${WORKDIR}/everybuddy-0.2.1beta3
DESCRIPTION="Universal Instant Messaging Client"
SRC_URI="http://www.everybuddy.com/files/${A}"
HOMEPAGE="http://www.everybuddy.com/"
DEPEND="virtual/glibc >=x11-libs/gtk+-1.2.10
"
src_compile() {
local myconf
if [ -z "`use arts`" ]; then
myconf="--disable-arts"
fi
try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} ${myconf}
try make
}
src_install () {
try make DESTDIR=${D} install
dodoc AUTHORS NEWS README TODO COPYING ChangeLog
}
|