diff options
author | Stefan Knoblich <stkn@gentoo.org> | 2004-03-14 16:09:20 +0000 |
---|---|---|
committer | Stefan Knoblich <stkn@gentoo.org> | 2004-03-14 16:09:20 +0000 |
commit | 3a567935a0b95bb201df27fd0c2a3c3ba77d48f4 (patch) | |
tree | fc5a5279de19098530c51a634d7baedd5b5da47d /net-libs/libosip/libosip-2.0.6.ebuild | |
parent | Added ~sparc keyword. (Manifest recommit) (diff) | |
download | gentoo-2-3a567935a0b95bb201df27fd0c2a3c3ba77d48f4.tar.gz gentoo-2-3a567935a0b95bb201df27fd0c2a3c3ba77d48f4.tar.bz2 gentoo-2-3a567935a0b95bb201df27fd0c2a3c3ba77d48f4.zip |
Version bump, new maintainer, and initial import of libosip2 ebuild
Diffstat (limited to 'net-libs/libosip/libosip-2.0.6.ebuild')
-rw-r--r-- | net-libs/libosip/libosip-2.0.6.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-libs/libosip/libosip-2.0.6.ebuild b/net-libs/libosip/libosip-2.0.6.ebuild new file mode 100644 index 000000000000..a29d909b644a --- /dev/null +++ b/net-libs/libosip/libosip-2.0.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/libosip-2.0.6.ebuild,v 1.1 2004/03/14 16:09:20 stkn Exp $ + +IUSE="" + +DESCRIPTION="GNU oSIP (Open SIP) library version 2" +HOMEPAGE="http://www.gnu.org/software/osip/" +SRC_URI="http://osip.atosc.org/download/osip/libosip2-${PV}.tar.gz" +S="${WORKDIR}/libosip2-${PV}" + +SLOT="2" +KEYWORDS="~x86" +LICENSE="LGPL-2" + +DEPEND="virtual/glibc + dev-util/gperf" + +src_compile() { + local myconf + + myconf="--enable-gperf --enable-mt --enable-md5" + + use debug && \ + myconf="${myconf} --enable-debug" + + econf ${myconf} || die + emake || die +} + +src_install() { + einstall || die + dodoc README ChangeLog INSTALL AUTHORS COPYING NEWS BUGS TODO +} |