blob: a722b3911672a11602421cbb35ee8e30493254a1 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/guile-gtk/guile-gtk-1.2.0.60.ebuild,v 1.2 2007/07/15 05:53:11 mr_bones_ Exp $
MAJOR_PV=${PV%.[0-9]*.[0-9]*}
MINOR_PV=${PV#[0-9]*.[0-9]*.}
MY_P="${PN}-${MINOR_PV}"
DESCRIPTION="GTK+ bindings for guile"
HOMEPAGE="http://www.gnu.org/software/guile-gtk/"
SRC_URI="mirror://gnu/guile-gtk/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-scheme/guile-1.6
=x11-libs/gtk+-1.2*"
S=${WORKDIR}/${MY_P}
src_install() {
make DESTDIR=${D} install
dodoc INSTALL README* COPYING AUTHORS ChangeLog NEWS TODO
insinto /usr/share/guile-gtk/examples
doins ${S}/examples/*.scm
}
|