diff options
author | 2006-07-11 14:23:34 +0000 | |
---|---|---|
committer | 2006-07-11 14:23:34 +0000 | |
commit | dbeb9cf8f9ca603597d5a9803528031ba1521ff3 (patch) | |
tree | 31aa4960f61a54f0e98e0ce7d06bf1c11f664110 /net-libs/ccrtp/ccrtp-1.4.1.ebuild | |
parent | Initial import (diff) | |
download | gentoo-2-dbeb9cf8f9ca603597d5a9803528031ba1521ff3.tar.gz gentoo-2-dbeb9cf8f9ca603597d5a9803528031ba1521ff3.tar.bz2 gentoo-2-dbeb9cf8f9ca603597d5a9803528031ba1521ff3.zip |
version bump
(Portage version: 2.1.1_pre2-r6)
Diffstat (limited to 'net-libs/ccrtp/ccrtp-1.4.1.ebuild')
-rw-r--r-- | net-libs/ccrtp/ccrtp-1.4.1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-libs/ccrtp/ccrtp-1.4.1.ebuild b/net-libs/ccrtp/ccrtp-1.4.1.ebuild new file mode 100644 index 000000000000..9c348a7ac36c --- /dev/null +++ b/net-libs/ccrtp/ccrtp-1.4.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ccrtp/ccrtp-1.4.1.ebuild,v 1.1 2006/07/11 14:23:34 dragonheart Exp $ + +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 ~x86" +LICENSE="GPL-2" +IUSE="" +SLOT="0" + +DEPEND=">=dev-cpp/commoncpp2-1.3.0" +RDEPEND="${DEPEND}" + + +src_install() { + emake DESTDIR=${D} install || die + dodoc README ChangeLog AUTHORS NEWS TODO +} + +pkg_postinst() { + if [[ -e ${ROOT}/usr/lib/libccrtp1-1.3.so.0 ]] ; then + ewarn + ewarn "Please run: revdep-rebuild --library libccrtp1-1.3.so.0" + ewarn + fi +} + |