blob: 7b0b03742e0a6ad3b6f23f02da4edaee6484fc04 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/tmsnc/tmsnc-0.3.0.ebuild,v 1.1 2005/10/20 03:57:07 metalgod Exp $
DESCRIPTION="TMSNC is a textbased MSN client written in C."
HOMEPAGE="http://tmsnc.sourceforge.net/"
SRC_URI="mirror://sourceforge/tmsnc/${P}.tar.gz"
LICENSE="IRPDL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls ssl talkfilters"
DEPEND="virtual/libc
>=sys-libs/ncurses-5.4
nls? ( sys-devel/gettext )
ssl? ( >=dev-libs/openssl-0.9.7d )
talkfilters? ( >=app-text/talkfilters-2.3.4 )"
src_compile() {
local myconf
use nls \
|| myconf="${myconf} --disable-nls"
use ssl \
|| myconf="${myconf} --without-ssl"
use talkfilters \
|| myconf="${myconf} --without-talkfilters"
econf ${myconf} || die "Configure failed"
emake || die "Make failed"
}
src_install() {
make DESTDIR=${D} install || die "Make install failed"
dodoc AUTHORS ChangeLog README NEWS
}
pkg_postinst() {
einfo "If you want talkfilters support you need to add"
einfo "USE=talkfilters to enable support in this package"
}
|