diff options
author | 2010-12-19 15:14:44 +0000 | |
---|---|---|
committer | 2010-12-19 15:14:44 +0000 | |
commit | 9dd4ea1a66d4d711dacbed289ba1ed110efd4a27 (patch) | |
tree | 7ecb0581f6b61561757e3b503fcf915a8d882e37 /net-libs | |
parent | Leaving ESVN_STORE_DIR after the subversion_src_unpack, so that subsequent co... (diff) | |
download | gentoo-2-9dd4ea1a66d4d711dacbed289ba1ed110efd4a27.tar.gz gentoo-2-9dd4ea1a66d4d711dacbed289ba1ed110efd4a27.tar.bz2 gentoo-2-9dd4ea1a66d4d711dacbed289ba1ed110efd4a27.zip |
Restore libosip-2.2.2.ebuild as it's used by net-misc/partysip, thank Mr_Bones for report.
(Portage version: 2.1.9.25/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libosip/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libosip/libosip-2.2.2.ebuild | 34 |
2 files changed, 39 insertions, 1 deletions
diff --git a/net-libs/libosip/ChangeLog b/net-libs/libosip/ChangeLog index 335a59300311..6a0bc1fb4855 100644 --- a/net-libs/libosip/ChangeLog +++ b/net-libs/libosip/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libosip # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/ChangeLog,v 1.43 2010/12/04 14:20:26 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/ChangeLog,v 1.44 2010/12/19 15:14:44 pva Exp $ + + 19 Dec 2010; Peter Volkov <pva@gentoo.org> +libosip-2.2.2.ebuild: + Restore libosip-2.2.2.ebuild as it's used by net-misc/partysip, thank + Mr_Bones for report. 04 Dec 2010; Peter Volkov <pva@gentoo.org> -libosip-2.2.2.ebuild, -libosip-3.0.3.2.ebuild, -libosip-3.1.0.ebuild, -libosip-3.2.0.ebuild: diff --git a/net-libs/libosip/libosip-2.2.2.ebuild b/net-libs/libosip/libosip-2.2.2.ebuild new file mode 100644 index 000000000000..4f9b162bc848 --- /dev/null +++ b/net-libs/libosip/libosip-2.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/libosip-2.2.2.ebuild,v 1.8 2010/12/19 15:14:44 pva Exp $ + +IUSE="" + +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="amd64 ppc ~sparc x86" +LICENSE="LGPL-2" + +DEPEND="" + +src_compile() { + + econf \ + --enable-mt \ + || die "Failed to econf" + # for later - --enable-hashtable - requires libdict (whatever that is) + + emake || die "Failed to emake" +} + +src_install() { + emake "DESTDIR=${D}" install || die "Failed to install" + dodoc AUTHORS BUGS ChangeLog FEATURES HISTORY + dodoc README NEWS TODO +} |