summaryrefslogtreecommitdiff
blob: 04f4f7fc3ded14ac64a209bdc5701125130a342e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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.9.1.ebuild,v 1.3 2002/07/11 06:30:47 drobbins Exp $

S="${WORKDIR}/openh323"
SRC_URI="http://www.openh323.org/bin/openh323_${PV}.tar.gz"
HOMEPAGE="http://www.openh323.org"
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
   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
}