summaryrefslogtreecommitdiff
blob: a983302edcf7edf514fbd7add8e446ce81d5fbc1 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# 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.3 2002/07/03 23:15:51 raker 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
	>=sys-devel/autoconf-2.52
	>=dev-libs/pwlib-1.2.19
	>=net-libs/openh323-1.8.8
	>=net-nds/openldap-2.0.21
	>=dev-libs/libIDL-0.7.4
	>=net-libs/linc-0.5.0
	>=gnome-base/gnome-common-1.2.4-r3
	>=gnome-base/gnome-vfs-2.0.0
	>=gnome-base/libgnomeui-2.0.0"

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"
}