diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2015-03-29 17:25:16 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2015-03-29 17:25:16 +0000 |
commit | 4c985bba355c1745887e9935ef6aed36c4f7e7bc (patch) | |
tree | 562ba9f0559b73c3ae085c425179f75355a7e022 /net-libs/ccrtp | |
parent | Version bump (diff) | |
download | gentoo-2-4c985bba355c1745887e9935ef6aed36c4f7e7bc.tar.gz gentoo-2-4c985bba355c1745887e9935ef6aed36c4f7e7bc.tar.bz2 gentoo-2-4c985bba355c1745887e9935ef6aed36c4f7e7bc.zip |
Version bump
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'net-libs/ccrtp')
-rw-r--r-- | net-libs/ccrtp/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/ccrtp/ccrtp-2.1.2.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/net-libs/ccrtp/ChangeLog b/net-libs/ccrtp/ChangeLog index 9905a2ae7232..2c4f2e2fb2bf 100644 --- a/net-libs/ccrtp/ChangeLog +++ b/net-libs/ccrtp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/ccrtp # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/ccrtp/ChangeLog,v 1.37 2015/01/26 10:08:27 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/ccrtp/ChangeLog,v 1.38 2015/03/29 17:25:16 polynomial-c Exp $ + +*ccrtp-2.1.2 (29 Mar 2015) + + 29 Mar 2015; Lars Wendler <polynomial-c@gentoo.org> +ccrtp-2.1.2.ebuild: + Version bump. 26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> ccrtp-2.0.9.ebuild: Stable for x86, wrt bug #535572 diff --git a/net-libs/ccrtp/ccrtp-2.1.2.ebuild b/net-libs/ccrtp/ccrtp-2.1.2.ebuild new file mode 100644 index 000000000000..73787c2e9f54 --- /dev/null +++ b/net-libs/ccrtp/ccrtp-2.1.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ccrtp/ccrtp-2.1.2.ebuild,v 1.1 2015/03/29 17:25:16 polynomial-c Exp $ + +EAPI=5 +inherit eutils multilib + +DESCRIPTION="GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF" +HOMEPAGE="http://www.gnu.org/software/ccrtp/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +LICENSE="GPL-2" +IUSE="doc" +SLOT="0/2" + +RDEPEND=">=dev-cpp/commoncpp2-1.3.0:0= + dev-libs/libgcrypt:0= + >=dev-libs/ucommon-5.0.0:=" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +src_configure() { + econf --disable-static +} + +src_install() { + default + prune_libtool_files + use doc && dohtml -r doc/html/* +} + +pkg_postinst() { + if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.4.so.0 ]] ; then + elog "Please run: revdep-rebuild --library libccrtp1-1.4.so.0" + fi + if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.5.so.0 ]] ; then + elog "Please run: revdep-rebuild --library libccrtp1-1.5.so.0" + fi + if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.6.so.0 ]] ; then + elog "Please run: revdep-rebuild --library libccrtp1-1.6.so.0" + fi +} |