diff options
Diffstat (limited to 'net-libs/openh323')
-rw-r--r-- | net-libs/openh323/ChangeLog | 9 | ||||
-rw-r--r-- | net-libs/openh323/files/digest-openh323-1.8.11 | 1 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.8.11.ebuild | 39 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.9.1.ebuild | 19 |
4 files changed, 54 insertions, 14 deletions
diff --git a/net-libs/openh323/ChangeLog b/net-libs/openh323/ChangeLog index 56020fd704a5..477c8663b1b7 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.1 2002/07/03 18:26:49 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/ChangeLog,v 1.2 2002/07/03 21:31:41 drobbins Exp $ + +*openh323-1.8.11 (03 Jul 2002) + + 03 Jul 2002; Daniel Robbins <drobbins@gentoo.org> Adding latest 1.8 version + of this ebuild so that we can get the latest gnomemeeting working (doesn't + work with 1.9 yet.) Thanks to Nick Hadaway (raker) for this submission. Set + SLOT to 1.8 and tweaked top comments. *openh323-1.9.1 (03 Jul 2002) diff --git a/net-libs/openh323/files/digest-openh323-1.8.11 b/net-libs/openh323/files/digest-openh323-1.8.11 new file mode 100644 index 000000000000..0b3d6aa18881 --- /dev/null +++ b/net-libs/openh323/files/digest-openh323-1.8.11 @@ -0,0 +1 @@ +MD5 b88dfdd4b460fb8bf5669f2092965b9f openh323_1.8.11.tar.gz 1748390 diff --git a/net-libs/openh323/openh323-1.8.11.ebuild b/net-libs/openh323/openh323-1.8.11.ebuild new file mode 100644 index 000000000000..04a3b777578d --- /dev/null +++ b/net-libs/openh323/openh323-1.8.11.ebuild @@ -0,0 +1,39 @@ +# 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.8.11.ebuild,v 1.1 2002/07/03 21:31:41 drobbins Exp $ + +S="${WORKDIR}/openh323" +SRC_URI="http://www.openh323.org/bin/openh323_${PV}.tar.gz" +HOMEPAGE="http://www.openh323.org" +DEPEND="virtual/glibc >=dev-libs/pwlib-1.2.20" +SLOT="1.8" +KEYWORDS="x86" + +src_compile() { + cd ${S} + export PWLIBDIR=/usr/share/pwlib + export OPENH323DIR=${S} + echo $PWLIBDIR + make optshared || die +} + +src_install() { + mkdir -p ${D}/usr/lib + mkdir -p ${D}/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 +} + + diff --git a/net-libs/openh323/openh323-1.9.1.ebuild b/net-libs/openh323/openh323-1.9.1.ebuild index 1ee10c17c7d3..4aa5d3bd8a6c 100644 --- a/net-libs/openh323/openh323-1.9.1.ebuild +++ b/net-libs/openh323/openh323-1.9.1.ebuild @@ -1,29 +1,24 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author Fabrice Alphonso <fabrice@alphonso.dyndns.org> -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.9.1.ebuild,v 1.1 2002/07/03 18:26:49 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.9.1.ebuild,v 1.2 2002/07/03 21:31:41 drobbins Exp $ S="${WORKDIR}/openh323" -SRC_URI="http://www.gnomemeeting.org/downloads/latest/sources/openh323_1.8.0-patched.tar.gz" +SRC_URI="http://www.openh323.org/bin/openh323_${PV}.tar.gz" HOMEPAGE="http://www.openh323.org" - -DEPEND="virtual/glibc - >=dev-libs/pwlib-1.2.1-r3" +SLOT="1.9" +DEPEND="virtual/glibc >=dev-libs/pwlib-1.2.20" +KEYWORDS="x86" src_compile() { - cd ${S} export PWLIBDIR=/usr/share/pwlib export OPENH323DIR=${S} echo $PWLIBDIR - make optshared || die - } src_install() { - - mkdir -p ${D}/usr/lib mkdir -p ${D}/usr/share/openh323 cd ${S}/lib @@ -38,10 +33,8 @@ src_install() { 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.1.0.0a libopenh323.so - + ln -sf libh323_linux_x86_r.so.${PV} libopenh323.so } |