diff options
author | Aron Griffis <agriffis@gentoo.org> | 2002-01-21 14:50:40 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2002-01-21 14:50:40 +0000 |
commit | 34507ec9cafbf91800a2ee5f493c9f5612ce7bc7 (patch) | |
tree | b40ffb6bfd1f9e3de57d01d23a48430437c92726 /dev-ruby/ruby-gdkpixbuf | |
parent | disabled opengl scrensavers until libGL.la bug is fixed (an opegl problem, no... (diff) | |
download | historical-34507ec9cafbf91800a2ee5f493c9f5612ce7bc7.tar.gz historical-34507ec9cafbf91800a2ee5f493c9f5612ce7bc7.tar.bz2 historical-34507ec9cafbf91800a2ee5f493c9f5612ce7bc7.zip |
Added ebuilds for ruby bindings to Gtk+ and Gnome.
Diffstat (limited to 'dev-ruby/ruby-gdkpixbuf')
-rw-r--r-- | dev-ruby/ruby-gdkpixbuf/files/digest-ruby-gdkpixbuf-0.26 | 1 | ||||
-rw-r--r-- | dev-ruby/ruby-gdkpixbuf/ruby-gdkpixbuf-0.26.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-ruby/ruby-gdkpixbuf/files/digest-ruby-gdkpixbuf-0.26 b/dev-ruby/ruby-gdkpixbuf/files/digest-ruby-gdkpixbuf-0.26 new file mode 100644 index 000000000000..55c1a154902f --- /dev/null +++ b/dev-ruby/ruby-gdkpixbuf/files/digest-ruby-gdkpixbuf-0.26 @@ -0,0 +1 @@ +MD5 99e7afbe89ee2c74303563cd768b0e27 ruby-gnome-0.26.tar.gz 348160 diff --git a/dev-ruby/ruby-gdkpixbuf/ruby-gdkpixbuf-0.26.ebuild b/dev-ruby/ruby-gdkpixbuf/ruby-gdkpixbuf-0.26.ebuild new file mode 100644 index 000000000000..35ccaa817010 --- /dev/null +++ b/dev-ruby/ruby-gdkpixbuf/ruby-gdkpixbuf-0.26.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Jerry Alexandratos <jerry@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gdkpixbuf/ruby-gdkpixbuf-0.26.ebuild,v 1.1 2002/01/21 14:50:40 agriffis Exp $ + +S=${WORKDIR}/ruby-gnome-${PV}/gdkpixbuf +DESCRIPTION="Ruby Gnome bindings" +SRC_URI="http://prdownloads.sourceforge.net/ruby-gnome/ruby-gnome-${PV}.tar.gz" +HOMEPAGE="http://ruby-gnome.sourceforge.net/" + +DEPEND=">=dev-lang/ruby-1.6.4-r1 + >=dev-ruby/ruby-gtk-${PV}" + +src_compile() { + ruby extconf.rb || die "ruby extconf.rb failed" + emake || die "emake failed" +} + +src_install () { + make site-install DESTDIR=${D} + dodoc [A-Z]* + cp -dr sample ${D}/usr/share/doc/${PF} +} |