# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.11.7.ebuild,v 1.3 2003/05/16 23:31:38 liquidx Exp $ IUSE="ssl" 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.4.11 ssl? ( dev-libs/openssl )" SLOT="0" LICENSE="MPL-1.1" KEYWORDS="x86 ~ppc -sparc " pkg_setup() { # to prevent merge problems with broken makefiles from old # pwlib versions, we double-check here. if [ "` fgrep '\$(OPENSSLDIR)/include' /usr/share/pwlib/make/unix.mak`" ]; then # patch unix.mak so it doesn't require annoying # unmerge/merge cycle to upgrade einfo "Fixing broken pwlib makefile." cd /usr/share/pwlib/make cp unix.mak unix.mak.orig sed \ -e "s:-DP_SSL -I\$(OPENSSLDIR)/include -I\$(OPENSSLDIR)/crypto:-DP_SSL:" \ -e "s:^LDFLAGS.*\+= -L\$(OPENSSLDIR)/lib -L\$(OPENSSLDIR):LDFLAGS +=:" \ unix.mak.orig > unix.mak [ -f unix.mak.orig ] && rm -f unix.mak.orig fi } src_compile() { export PWLIBDIR=/usr/share/pwlib export OPENH323DIR=${S} if [ "`use ssl`" ]; then export OPENSSLFLAG=1 export OPENSSLDIR=/usr export OPENSSLLIBS="-lssl -lcrypt" fi 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 # mod to keep gnugk happy insinto /usr/share/openh323/src newins ${FILESDIR}/openh323-1.11.2-emptyMakefile Makefile cd ${D}/usr/lib if [ ${ARCH} = "ppc" ] ; then ln -sf libh323_linux_ppc_r.so.${PV} libopenh323.so else ln -sf libh323_linux_x86_r.so.${PV} libopenh323.so fi }