summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schweizer <genstef@gentoo.org>2006-03-21 21:33:12 +0000
committerStefan Schweizer <genstef@gentoo.org>2006-03-21 21:33:12 +0000
commit14176552c9c32ff6176ba1f961de983b4d634122 (patch)
tree087840cf20869f269341b3929e4b8c0e67479187 /net-im/ekiga
parentAdd ~alpha keyword. (diff)
downloadgentoo-2-14176552c9c32ff6176ba1f961de983b4d634122.tar.gz
gentoo-2-14176552c9c32ff6176ba1f961de983b4d634122.tar.bz2
gentoo-2-14176552c9c32ff6176ba1f961de983b4d634122.zip
Add ldap-pwlib check thanks to Serkan Kaba <serkan_kaba@yahoo.com> in bug 127090, remove postinstall thanks to David PIRY <klessou@gmail.com> in bug 127108
(Portage version: 2.1_pre6-r4)
Diffstat (limited to 'net-im/ekiga')
-rw-r--r--net-im/ekiga/ChangeLog7
-rw-r--r--net-im/ekiga/ekiga-2.0.1.ebuild24
2 files changed, 14 insertions, 17 deletions
diff --git a/net-im/ekiga/ChangeLog b/net-im/ekiga/ChangeLog
index fa684ab02f7b..530705e91aaa 100644
--- a/net-im/ekiga/ChangeLog
+++ b/net-im/ekiga/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-im/ekiga
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekiga/ChangeLog,v 1.1 2006/03/20 23:45:02 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/ekiga/ChangeLog,v 1.2 2006/03/21 21:33:12 genstef Exp $
+
+ 21 Mar 2006; Stefan Schweizer <genstef@gentoo.org> ekiga-2.0.1.ebuild:
+ Add ldap-pwlib check thanks to Serkan Kaba <serkan_kaba@yahoo.com> in bug
+ 127090, remove postinstall thanks to David PIRY <klessou@gmail.com> in bug
+ 127108
*ekiga-2.0.1 (20 Mar 2006)
diff --git a/net-im/ekiga/ekiga-2.0.1.ebuild b/net-im/ekiga/ekiga-2.0.1.ebuild
index 9e71d7f2831e..ac385c61d9aa 100644
--- a/net-im/ekiga/ekiga-2.0.1.ebuild
+++ b/net-im/ekiga/ekiga-2.0.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekiga/ekiga-2.0.1.ebuild,v 1.1 2006/03/20 23:45:02 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/ekiga/ekiga-2.0.1.ebuild,v 1.2 2006/03/21 21:33:12 genstef Exp $
inherit gnome2 eutils flag-o-matic
@@ -40,15 +40,19 @@ DEPEND="${RDEPEND}
>=dev-util/intltool-0.20
gnome? ( app-text/scrollkeeper )"
+pkg_setup() {
+ if ! built_with_use dev-libs/pwlib ldap; then
+ einfo "You need to build dev-libs/pwlib with USE=ldap enabled."
+ die "Pwlib w/o ldap-support detected."
+ fi
+}
+
src_unpack() {
unpack ${A}
cd ${S}
# Fix configure to install schemafile into the proper directory
epatch ${FILESDIR}/${PN}-1.99.0-configure.patch
-
- # Relax dbus version check and fix installation of service file
-# epatch ${FILESDIR}/${PN}-1.99.0-dbus.diff
}
src_compile() {
@@ -87,7 +91,6 @@ src_compile() {
}
src_install() {
-
if use gnome; then
gnome2_src_install
else
@@ -98,15 +101,4 @@ src_install() {
fi
}
-pkg_postinst() {
-
- if use gnome; then
- gnome2_pkg_postinst
- # we need to fix the GConf permissions, see bug #59764
- # <obz@gentoo.org>
- einfo "Fixing GConf permissions for gnomemeeting"
- gnomemeeting-config-tool --fix-permissions
- fi
-}
-
DOCS="AUTHORS ChangeLog COPYING README INSTALL NEWS FAQ TODO"