diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-02-11 23:54:38 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-02-11 23:54:38 +0000 |
commit | b98498256703c1377f25a7a4689a453a08eb6863 (patch) | |
tree | 38bedda1716718c249ab82adb5919de6e791b2a4 /x11-libs/rep-gtk/rep-gtk-0.17-r1.ebuild | |
parent | Added hppa to keywords. (diff) | |
download | gentoo-2-b98498256703c1377f25a7a4689a453a08eb6863.tar.gz gentoo-2-b98498256703c1377f25a7a4689a453a08eb6863.tar.bz2 gentoo-2-b98498256703c1377f25a7a4689a453a08eb6863.zip |
Added patch to prevent segfaults on Alpha
Diffstat (limited to 'x11-libs/rep-gtk/rep-gtk-0.17-r1.ebuild')
-rw-r--r-- | x11-libs/rep-gtk/rep-gtk-0.17-r1.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/x11-libs/rep-gtk/rep-gtk-0.17-r1.ebuild b/x11-libs/rep-gtk/rep-gtk-0.17-r1.ebuild new file mode 100644 index 000000000000..6419ead65902 --- /dev/null +++ b/x11-libs/rep-gtk/rep-gtk-0.17-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/rep-gtk/rep-gtk-0.17-r1.ebuild,v 1.1 2003/02/11 23:54:38 agriffis Exp $ + +inherit eutils + +IUSE="" + +DESCRIPTION="A GTK+/libglade/GNOME language binding for the librep Lisp environment" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://rep-gtk.sourceforge.net/" +SLOT="gtk-2.0" +LICENSE="GPL-2" +KEYWORDS="~x86 alpha" + +DEPEND="virtual/glibc + >=dev-util/pkgconfig-0.12.0 + >=x11-libs/gtk+-2.0.3 + >=gnome-base/libbonobo-2.0.0 + >=gnome-base/libbonoboui-2.0.0 + >=gnome-base/libgnome-2.0.0 + >=gnome-base/libgnomeui-2.0.0 + >=gnome-base/libgnomecanvas-2.0.0 + >=gnome-base/libglade-2.0.0 + >=sys-devel/automake-1.6.1-r5 + >=dev-libs/librep-0.13" + +src_unpack() { + unpack ${A} || die + cd ${S} || die + epatch ${FILESDIR}/rep-gtk-0.17-64bit.patch || die +} + +src_compile() { + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --libexecdir=/usr/lib \ + --with-gnome \ + --with-libglade \ + --with-gdk-pixbuf \ + --infodir=/usr/share/info || die + + emake host_type=${CHOST} || die +} + +src_install() { + + make install \ + host_type=${CHOST} \ + installdir=${D}/usr/lib/rep/${CHOST} || die + + cd ${S} + dodoc AUTHORS BUGS COPYING ChangeLog HACKING \ + NEWS README* TODO +} + |