blob: 9be674a20f90d572768c6142fc4fe872563f6894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# 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-gnome/ruby-gnome-0.26.ebuild,v 1.2 2002/05/27 17:27:37 drobbins Exp $
S=${WORKDIR}/ruby-gnome-${PV}/gnome
DESCRIPTION="Ruby Gnome bindings"
SRC_URI="mirror://sourceforge/ruby-gnome/ruby-gnome-${PV}.tar.gz"
HOMEPAGE="http://ruby-gnome.sourceforge.net/"
DEPEND=">=dev-lang/ruby-1.6.4-r1
>=gnome-base/gnome-libs-1.4.1.3
>=dev-ruby/ruby-gdkimlib-${PV}
>=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 doc ${D}/usr/share/doc/${PF}
}
|