summaryrefslogtreecommitdiff
blob: e9763963e517cc8cff03e26e15694612dbffe7bf (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/libosip-2.2.1.ebuild,v 1.2 2005/07/15 19:12:51 stkn Exp $

IUSE="debug"

MY_MPV=${PV//.*}

DESCRIPTION="GNU oSIP (Open SIP) library version 2"
HOMEPAGE="http://www.gnu.org/software/osip/"
SRC_URI="mirror://gnu/osip/libosip2-${PV}.tar.gz"
S="${WORKDIR}/${PN}${MY_MPV}-${PV}"

SLOT="${MY_MPV}"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
LICENSE="LGPL-2"

DEPEND="virtual/libc"

src_compile() {

	econf \
		--enable-md5 \
		--enable-mt \
		`use_enable debug` \
		|| die "Failed to econf"

	emake || die "Failed to emake"
}

src_install() {
	einstall || die "Failed to einstall"
	dodoc AUTHORS BUGS ChangeLog COPYING FEATURES HISTORY INSTALL
	dodoc README NEWS TODO
}