diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-07-03 18:26:49 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-07-03 18:26:49 +0000 |
commit | a0bfa888e13bbd231a54a910470eaa1a14d8707d (patch) | |
tree | 5c344f4a46bbbd517e4ae26785ffff77c78cc086 /net-libs | |
parent | masking new openh323 (diff) | |
download | gentoo-2-a0bfa888e13bbd231a54a910470eaa1a14d8707d.tar.gz gentoo-2-a0bfa888e13bbd231a54a910470eaa1a14d8707d.tar.bz2 gentoo-2-a0bfa888e13bbd231a54a910470eaa1a14d8707d.zip |
adding new openh323 ebuild (masked)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/openh323/ChangeLog | 9 | ||||
-rw-r--r-- | net-libs/openh323/files/digest-openh323-1.9.1 | 1 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.9.1.ebuild | 47 |
3 files changed, 57 insertions, 0 deletions
diff --git a/net-libs/openh323/ChangeLog b/net-libs/openh323/ChangeLog new file mode 100644 index 000000000000..56020fd704a5 --- /dev/null +++ b/net-libs/openh323/ChangeLog @@ -0,0 +1,9 @@ +# 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 $ + +*openh323-1.9.1 (03 Jul 2002) + + 03 Jul 2002; Daniel Robbins <drobbins@gentoo.org> New version of this ebuild + to correspond with our latest version of pwlib. Needs some testing so + masking for now. diff --git a/net-libs/openh323/files/digest-openh323-1.9.1 b/net-libs/openh323/files/digest-openh323-1.9.1 new file mode 100644 index 000000000000..e56fbb52004a --- /dev/null +++ b/net-libs/openh323/files/digest-openh323-1.9.1 @@ -0,0 +1 @@ +MD5 e474644f9121567b9f19d811f8d4ac15 openh323_1.8.0-patched.tar.gz 1699911 diff --git a/net-libs/openh323/openh323-1.9.1.ebuild b/net-libs/openh323/openh323-1.9.1.ebuild new file mode 100644 index 000000000000..1ee10c17c7d3 --- /dev/null +++ b/net-libs/openh323/openh323-1.9.1.ebuild @@ -0,0 +1,47 @@ +# 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 $ + +S="${WORKDIR}/openh323" +SRC_URI="http://www.gnomemeeting.org/downloads/latest/sources/openh323_1.8.0-patched.tar.gz" +HOMEPAGE="http://www.openh323.org" + +DEPEND="virtual/glibc + >=dev-libs/pwlib-1.2.1-r3" + +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.1.0.0a libopenh323.so + +} + + |