blob: 663a9b709704cc24d1bfc01756dc422f1713030a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/ayttm/ayttm-0.4.6-r1.ebuild,v 1.3 2005/05/23 13:44:25 dragonheart Exp $
# arts causes segfault
IUSE="truetype esd gnome nls"
DESCRIPTION="Are you talking to me? - MSN, Jabber, IRC, ICQ, AIM, SMTP instant messenger"
SRC_URI="mirror://sourceforge/${PN}/${P}-17.tar.bz2"
HOMEPAGE="http://ayttm.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc -alpha ~ppc"
DEPEND="virtual/x11
=x11-libs/gtk+-1.2*
media-libs/audiofile
media-libs/gdk-pixbuf
dev-libs/openssl
app-text/aspell
sys-devel/libtool
truetype? ( virtual/xft )
gnome? ( >=gnome-base/gnome-libs-1.4.1.7 )
esd? ( >=media-sound/esound-0.2.28 )
~app-crypt/gpgme-0.3.14"
src_compile() {
export GPGME_CONFIG=/usr/bin/gpgme3-config
econf \
--enable-smtp \
--disable-arts \
`use_enable truetype xft` \
`use_enable esd` \
`use_enable gnome` \
`use_enable nls` || die
emake || die
}
src_install () {
einstall || die
dodoc AUTHORS NEWS README TODO ChangeLog
}
|