diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2010-09-07 11:10:47 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2010-09-07 11:10:47 +0000 |
commit | 888a086950359645ef812918f19ae2dd7a470580 (patch) | |
tree | bcf1409e606f14dded537b2715678ec77603f4b2 /net-libs/libpri | |
parent | Version bump and fix bug #283057 (diff) | |
download | gentoo-2-888a086950359645ef812918f19ae2dd7a470580.tar.gz gentoo-2-888a086950359645ef812918f19ae2dd7a470580.tar.bz2 gentoo-2-888a086950359645ef812918f19ae2dd7a470580.zip |
Version bump, as requested by Oliver Jaksch in bug #335639. Among other things, this improves compliance with the Q.921 specification.
(Portage version: 2.1.9.1/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libpri')
-rw-r--r-- | net-libs/libpri/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/libpri/libpri-1.4.11.4.ebuild | 31 |
2 files changed, 38 insertions, 1 deletions
diff --git a/net-libs/libpri/ChangeLog b/net-libs/libpri/ChangeLog index a9d18c80a11f..87f19d31d875 100644 --- a/net-libs/libpri/ChangeLog +++ b/net-libs/libpri/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libpri # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libpri/ChangeLog,v 1.80 2010/07/13 14:01:39 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libpri/ChangeLog,v 1.81 2010/09/07 11:10:47 chainsaw Exp $ + +*libpri-1.4.11.4 (07 Sep 2010) + + 07 Sep 2010; <chainsaw@gentoo.org> +libpri-1.4.11.4.ebuild: + Version bump, as requested by Oliver Jaksch in bug #335639. Among other + things, this improves compliance with the Q.921 specification. *libpri-1.4.11.3 (13 Jul 2010) diff --git a/net-libs/libpri/libpri-1.4.11.4.ebuild b/net-libs/libpri/libpri-1.4.11.4.ebuild new file mode 100644 index 000000000000..6538714c3ef7 --- /dev/null +++ b/net-libs/libpri/libpri-1.4.11.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libpri/libpri-1.4.11.4.ebuild,v 1.1 2010/09/07 11:10:47 chainsaw Exp $ + +EAPI="3" + +EAPI=3 +inherit base + +DESCRIPTION="Primary Rate ISDN (PRI) library" +HOMEPAGE="http://www.asterisk.org/" +SRC_URI="http://downloads.asterisk.org/pub/telephony/${PN}/releases/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86 ~ppc ~sparc" +IUSE="" + +PATCHES=( + "${FILESDIR}/${PN}-1.4.11.1-multilib.patch" + "${FILESDIR}/${PN}-1.4.11.1-respect-cflags.patch" + "${FILESDIR}/${PN}-1.4.11.1-respect-ldflags.patch" + "${FILESDIR}/${PN}-1.4.11.1-werror-is-ill-advised.patch" +) + +src_install() { + emake INSTALL_PREFIX="${D}" LIBDIR="${D}/usr/$(get_libdir)" install \ + || die "emake install failed" + + dodoc ChangeLog README TODO || die "dodoc failed" +} |