diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-12 12:06:56 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-12 12:06:56 +0000 |
commit | 0bb19c3e11964ceaa3957f92c2608e9e36864308 (patch) | |
tree | 150864a79ae65f659971eeea52fafee86a629680 /gnome-extra | |
parent | seems its not official yet (diff) | |
download | gentoo-2-0bb19c3e11964ceaa3957f92c2608e9e36864308.tar.gz gentoo-2-0bb19c3e11964ceaa3957f92c2608e9e36864308.tar.bz2 gentoo-2-0bb19c3e11964ceaa3957f92c2608e9e36864308.zip |
Modified deps to work with gnome2 packages unmasked.
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/gtkhtml/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-extra/gtkhtml/files/digest-gtkhtml-1.0.2-r2 | 1 | ||||
-rw-r--r-- | gnome-extra/gtkhtml/gtkhtml-1.0.2-r2.ebuild | 63 |
3 files changed, 71 insertions, 1 deletions
diff --git a/gnome-extra/gtkhtml/ChangeLog b/gnome-extra/gtkhtml/ChangeLog index 0e94b8940f5f..88813b25fa47 100644 --- a/gnome-extra/gtkhtml/ChangeLog +++ b/gnome-extra/gtkhtml/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/gtkhtml # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.3 2002/04/11 14:03:56 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.4 2002/06/12 12:06:56 stroke Exp $ + +*gtkhtml-1.0.2-r2 (12 Jun 2002) + + 12 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> gtkhtml-1.0.2-r2.ebuild + + Changed deps to work even if gnome2 packages are unmasked *gtkhtml-1.0.2-r1 (11 Apr 2002) diff --git a/gnome-extra/gtkhtml/files/digest-gtkhtml-1.0.2-r2 b/gnome-extra/gtkhtml/files/digest-gtkhtml-1.0.2-r2 new file mode 100644 index 000000000000..04bc2137df61 --- /dev/null +++ b/gnome-extra/gtkhtml/files/digest-gtkhtml-1.0.2-r2 @@ -0,0 +1 @@ +MD5 5276fcca2007f2d1a9da912f167da942 gtkhtml-1.0.2.tar.gz 1303882 diff --git a/gnome-extra/gtkhtml/gtkhtml-1.0.2-r2.ebuild b/gnome-extra/gtkhtml/gtkhtml-1.0.2-r2.ebuild new file mode 100644 index 000000000000..d7eac2a13d2c --- /dev/null +++ b/gnome-extra/gtkhtml/gtkhtml-1.0.2-r2.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-1.0.2-r2.ebuild,v 1.1 2002/06/12 12:06:56 stroke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="gtkhtml" +SRC_URI="ftp://ftp.ximian.com/pub/source/evolution/${P}.tar.gz + ftp://ftp.gnome.org/pub/GNOME/unstable/sources/${PN}/${P}.tar.gz" + +HOMEPAGE="http://www.gnome.org/" + +RDEPEND=">=gnome-extra/gal-0.19 + ( >=gnome-base/control-center-1.4.0.1-r1 + <control-center-1.99.0 ) + >=gnome-base/libghttp-1.0.9-r1 + >=dev-libs/libunicode-0.4-r1 + >=gnome-base/gnome-print-0.34 + >=gnome-base/bonobo-1.0.18 + gnome? ( >=gnome-base/gconf-1.0.7-r2 + <gnome-base/gconf-1.10.0 ) + nls? ( sys-devel/gettext + >=dev-util/intltool-0.11 )" + +DEPEND="${RDEPEND}" + +src_compile() { + + local myconf + + use nls || myconf="${myconf} --disable-nls" + + # Evo users need to have bonobo support + #use bonobo \ + # && myconf="${myconf} --with-bonobo" \ + # || myconf="${myconf} --without-bonobo" + + use gnome \ + && myconf="${myconf} --with-gconf" \ + || myconf="${myconf} --without-gconf" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die + + emake || die "Package building failed." +} + +src_install() { + + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die + + # Fix the double entry in Control Center + rm ${D}/usr/share/control-center/capplets/gtkhtml-properties.desktop + + dodoc AUTHORS COPYING* ChangeLog README + dodoc NEWS TODO +} |