diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-07-03 21:57:23 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-07-03 21:57:23 +0000 |
commit | a68b6140915d50414b4efbf442fde34a97be61ca (patch) | |
tree | cd699ce1d5357346695be9534d90120531ccd6f4 /net-im/gnomemeeting | |
parent | SLOT tweak (diff) | |
download | gentoo-2-a68b6140915d50414b4efbf442fde34a97be61ca.tar.gz gentoo-2-a68b6140915d50414b4efbf442fde34a97be61ca.tar.bz2 gentoo-2-a68b6140915d50414b4efbf442fde34a97be61ca.zip |
ok, ready for testing by raker
Diffstat (limited to 'net-im/gnomemeeting')
-rw-r--r-- | net-im/gnomemeeting/gnomemeeting-0.92.1.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/net-im/gnomemeeting/gnomemeeting-0.92.1.ebuild b/net-im/gnomemeeting/gnomemeeting-0.92.1.ebuild new file mode 100644 index 000000000000..510f4419e085 --- /dev/null +++ b/net-im/gnomemeeting/gnomemeeting-0.92.1.ebuild @@ -0,0 +1,60 @@ +# 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-im/gnomemeeting/gnomemeeting-0.92.1.ebuild,v 1.1 2002/07/03 21:57:23 drobbins Exp $ + +S="${WORKDIR}/GnomeMeeting-${PV}" +SRC_URI="http://www.gnomemeeting.org/downloads/latest/sources/GnomeMeeting-${PV}.tar.gz" +HOMEPAGE="http://www.gnomemeeting.org" +DESCRIPTION="Gnome NetMeeting client" +SLOT="0" + +DEPEND="virtual/glibc + >=gnome-base/gnome-libs-1.4.1.4 + >=dev-libs/pwlib-1.2.12-r3 + >=net-libs/openh323-1.8.0-r1 + >=media-libs/gdk-pixbuf-0.16.0 + >=dev-libs/openssl-0.9.6c + >=gnome-base/gconf-1.0.8 + >=net-nds/openldap-2.0.21 + =x11-libs/gtk+-1.2*" + +src_compile() { + + cd ${S} + export PWLIBDIR=/usr/share/pwlib + export OPENH323DIR=/usr/share/openh323 + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --with-ptlib-includes=$PWLIBDIR/include/ptlib \ + --with-ptlib-libs=/usr/lib \ + --with-openh323-includes=$OPENH323DIR/include \ + --with-openh323-libs=/usr/lib \ + --host=${CHOST} || die + #manually disable installation of schemas + cp Makefile Makefile.orig + sed -e "s/^install-data-local: install-schemas/install-data-local:/g" Makefile.orig > Makefile || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + insinto /etc/gconf/schemas + doins ${S}/gnomemeeting.schema +} + +pkg_postinst() { + # This is from the devhelp ebuild... + # Fix gconf permissions + killall gconfd-1 2>/dev/null >/dev/null + chmod o+rX /etc/gconf -R + # Install schemas + gconftool-1 --shutdown + SOURCE=xml::/etc/gconf/gconf.xml.defaults + GCONF_CONFIG_SOURCE=$SOURCE \ + gconftool-1 --makefile-install-rule \ + /etc/gconf/schemas/${PN}.schemas \ + # 2>/dev/null >/dev/null || exit 1 + assert "gconftool-1 execution failed" +} + |