blob: 2998af8d453bcd0cc8e688cc678cfe155c247cb8 (
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
26
27
28
29
30
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/guile-gtk/guile-gtk-0.19-r1.ebuild,v 1.7 2005/03/20 04:15:00 kingtaco Exp $
inherit eutils
DESCRIPTION="GTK+ bindings for guile"
SRC_URI="http://www.ping.de/sites/zagadka/guile-gtk/download/${P}.tar.gz"
HOMEPAGE="http://www.ping.de/sites/zagadka/guile-gtk/"
IUSE=""
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="=dev-util/guile-1.4*
=x11-libs/gtk+-1.2*"
src_compile() {
epatch ${FILESDIR}/${P}-Makefile.in.patch
econf || die "econf failed"
emake || die
}
src_install() {
einstall
dodoc INSTALL README* COPYING AUTHORS ChangeLog NEWS TODO
insinto /usr/share/guile-gtk/examples
doins ${S}/examples/*.scm ${S}/examples/*.xpm
}
|