blob: f6af14256f20fbf048768d12c4e9b56d261608a7 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sipsak/sipsak-0.9.5.ebuild,v 1.1 2005/11/25 11:11:24 dragonheart Exp $
IUSE="gnutls"
DESCRIPTION="small command line tool for testing SIP applications and devices"
HOMEPAGE="http://sipsak.org/"
SRC_URI="http://download.berlios.de/sipsak/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~ppc-macos ~sparc ~x86"
RDEPEND="gnutls? ( net-libs/gnutls )
net-dns/c-ares"
# ares? ( net-dns/c-ares )"
DEPEND="${RDEPEND}
virtual/libc"
src_compile() {
econf $(use_enable gnutls) || die 'configure failed'
emake || die 'make failed'
}
src_install() {
emake DESTDIR=${D} install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
|