blob: 57758eb7f9aba53b1f618b96a39b7be2ca7c7a96 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/libosip-0.8.8.ebuild,v 1.3 2003/02/13 06:03:43 seemant Exp $
DESCRIPTION="This is the oSIP library (for Open SIP). It has been designed to provide the Internet Community a simple way to support the Session Initiation Protocol. SIP is described in the RFC2543 which is available at http://www.ietf.org/rfc/rfc2543.txt."
HOMEPAGE="http://www.linphone.org/?lang=us"
SRC_URI="http://www.linphone.org/download/${P}.tar.gz"
SLOT="1"
LICENSE="LGPL-2"
KEYWORDS="x86"
DEPEND="virtual/glibc"
src_compile() {
local myconf
if use pic; then
myconf="${myconf} --with-pic";
else
myconf="${myconf} --without-pic"
fi
econf ${myconf} || die
emake || die
}
src_install () {
einstall || die
dodoc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README TODO
}
|