diff options
Diffstat (limited to 'gnome-extra/yelp/yelp-2.12.2.ebuild')
-rw-r--r-- | gnome-extra/yelp/yelp-2.12.2.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/gnome-extra/yelp/yelp-2.12.2.ebuild b/gnome-extra/yelp/yelp-2.12.2.ebuild new file mode 100644 index 000000000000..0cfec4e07d03 --- /dev/null +++ b/gnome-extra/yelp/yelp-2.12.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/yelp-2.12.2.ebuild,v 1.1 2005/12/05 03:59:11 compnerd Exp $ + +inherit eutils gnome2 + +DESCRIPTION="Help browser for GNOME" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86" +IUSE="firefox" + +RDEPEND=">=dev-libs/glib-2 + >=gnome-base/orbit-2.12.4 + >=gnome-base/gconf-2 + >=app-text/gnome-doc-utils-0.3.1 + >=gnome-base/gnome-vfs-2 + >=x11-libs/gtk+-2.5.3 + >=gnome-base/libbonobo-1.108 + >=gnome-base/libglade-2 + >=gnome-base/libgnome-2.0.2 + >=gnome-base/libgnomeui-1.103 + >=dev-libs/libxml2-2.6.5 + >=dev-libs/libxslt-1.1.4 + !firefox? ( >=www-client/mozilla-1.7.3 ) + firefox? ( >=www-client/mozilla-firefox-1.0.2-r1 ) + dev-libs/popt + sys-libs/zlib + app-arch/bzip2" + +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/intltool-0.28 + >=dev-util/pkgconfig-0.9" + +DOCS="AUTHORS ChangeLog NEWS README TODO" + + +pkg_setup() { + G2CONF="--enable-man --enable-info" + + if use firefox; then + G2CONF="${G2CONF} --with-mozilla=firefox" + else + G2CONF="${G2CONF} --with-mozilla=mozilla" + fi +} + +src_unpack() { + unpack "${A}" + cd "${S}" + + epatch ${FILESDIR}/${PN}-2.6.4-makedepfix.patch +} |