diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-10-24 20:13:29 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-10-24 20:13:29 +0000 |
commit | 43c870b1486b787b8c7430ea3d3d7d892ca74726 (patch) | |
tree | e6640d71af281f46133e17b79de061ccf77490d4 /net-libs | |
parent | another version of the split-out panel (diff) | |
download | historical-43c870b1486b787b8c7430ea3d3d7d892ca74726.tar.gz historical-43c870b1486b787b8c7430ea3d3d7d892ca74726.tar.bz2 historical-43c870b1486b787b8c7430ea3d3d7d892ca74726.zip |
New version of openh323 to coincide with the new version of gnomemeeting
making it's way into portage. Currently marked unstable.
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/openh323/ChangeLog | 9 | ||||
-rw-r--r-- | net-libs/openh323/files/digest-openh323-1.9.10 | 1 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.9.10.ebuild | 48 |
3 files changed, 57 insertions, 1 deletions
diff --git a/net-libs/openh323/ChangeLog b/net-libs/openh323/ChangeLog index ec09109a5ba8..1f478076f5e7 100644 --- a/net-libs/openh323/ChangeLog +++ b/net-libs/openh323/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-libs/openh323 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/ChangeLog,v 1.4 2002/07/20 16:47:30 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/ChangeLog,v 1.5 2002/10/24 20:13:29 raker Exp $ + +openh323-1.9.10 (24 Oct 2002) + + 24 Oct 2002; Nick Hadaway <raker@gentoo.org> openh323-1.9.10.ebuild, + files/digest-openh323-1.9.10 : + Version bump. Currently marked unstable. Will be marked stable when + gnomemeeting is released into portage. *openh323-1.9.3 (20 Jul 2002) diff --git a/net-libs/openh323/files/digest-openh323-1.9.10 b/net-libs/openh323/files/digest-openh323-1.9.10 new file mode 100644 index 000000000000..f078580ba0b7 --- /dev/null +++ b/net-libs/openh323/files/digest-openh323-1.9.10 @@ -0,0 +1 @@ +MD5 4efbe1356cb26b8442add3cc4cfba91d openh323_1.9.10.tar.gz 1778990 diff --git a/net-libs/openh323/openh323-1.9.10.ebuild b/net-libs/openh323/openh323-1.9.10.ebuild new file mode 100644 index 000000000000..247d779c8199 --- /dev/null +++ b/net-libs/openh323/openh323-1.9.10.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.9.10.ebuild,v 1.1 2002/10/24 20:13:29 raker Exp $ + +S="${WORKDIR}/${PN}" + +SRC_URI="http://www.openh323.org/bin/${PN}_${PV}.tar.gz" +HOMEPAGE="http://www.openh323.org" +DESCRIPTION="Open Source implementation of the ITU H.323 teleconferencing protocol" + +DEPEND=">=dev-libs/pwlib-1.3.11" + +SLOT="0" +LICENSE="MPL-1.1" +KEYWORDS="~x86 ~sparc ~sparc64" + +src_compile() { + + export PWLIBDIR=/usr/share/pwlib + export OPENH323DIR=${S} + + make optshared || die + +} + +src_install() { + + dodir /usr/lib /usr/share/openh323 + + cd ${S}/lib + mv lib* ${D}/usr/lib + + cd ${S} + cp -a * ${D}/usr/share/openh323 + rm -rf ${D}/usr/share/openh323/make/CVS + rm -rf ${D}/usr/share/openh323/tools/CVS + rm -rf ${D}/usr/share/openh323/tools/asnparser/CVS + rm -rf ${D}/usr/share/openh323/src + rm -rf ${D}/usr/share/openh323/include/CVS + rm -rf ${D}/usr/share/openh323/include/ptlib/unix/CVS + rm -rf ${D}/usr/share/openh323/include/ptlib/CVS + + cd ${D}/usr/lib + ln -sf libh323_linux_x86_r.so.${PV} libopenh323.so + +} + + |