diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-07-04 14:45:29 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-07-04 14:45:29 +0000 |
commit | e667fd8414fd44350bedc03f5989754ab8aff600 (patch) | |
tree | 6c143cc43b12ca6c1f5de33e5ab9a6906580629c /dev-util/devhelp/devhelp-0.4-r1.ebuild | |
parent | New version (diff) | |
download | gentoo-2-e667fd8414fd44350bedc03f5989754ab8aff600.tar.gz gentoo-2-e667fd8414fd44350bedc03f5989754ab8aff600.tar.bz2 gentoo-2-e667fd8414fd44350bedc03f5989754ab8aff600.zip |
Updated and modified dependencies to match with Gnome1 libs avoiding Gnome2 ones.
Removed stale ebuilds.
Diffstat (limited to 'dev-util/devhelp/devhelp-0.4-r1.ebuild')
-rw-r--r-- | dev-util/devhelp/devhelp-0.4-r1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev-util/devhelp/devhelp-0.4-r1.ebuild b/dev-util/devhelp/devhelp-0.4-r1.ebuild new file mode 100644 index 000000000000..e1dc3dbd0e8e --- /dev/null +++ b/dev-util/devhelp/devhelp-0.4-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-0.4-r1.ebuild,v 1.1 2002/07/04 14:45:29 stroke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Developer help browser" +SRC_URI="http://devhelp.codefactory.se/download/${P}.tar.gz" +HOMEPAGE="http://devhelp.codefactory.se/" +LICENSE="GPL-2" +SLOT="0" + +RDEPEND=">=gnome-base/gnome-libs-1.4.1.7 + >=gnome-base/ORBit-0.5.10-r1 + >=gnome-base/bonobo-1.0.19 + ( >=gnome-base/libglade-0.17-r1 + <gnome-base/libglade-2.0.0 ) + >=dev-libs/libxml-1.8.17 + >=gnome-extra/gtkhtml-1.0.2 + =gnome-base/gconf-1.0* + ( >=gnome-base/gnome-vfs-1.0.2-r1 + <gnome-base/gnome-vfs-2.0.0 ) + >=gnome-base/oaf-0.6.8-r1 + >=gnome-base/gnome-print-0.30" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + >=dev-util/intltool-0.11" + +src_compile() { + local myconf + + if [ -z "`use nls`" ] ; then + myconf="--disable-nls" + fi + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --disable-more-warnings \ + --disable-install-schemas \ + --without-python $myconf || die + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING ChangeLog README NEWS TODO +} + +pkg_postinst() { + # This is directly from the rpm specfile for devhelp... + # 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/devhelp.schemas \ + # 2>/dev/null >/dev/null || exit 1 + assert "gconftool-1 execution failed" +} |