blob: 6ed4f9bada9fb325ed2c1de2e76077a5674346e5 (
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
|
# 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-1.2.0.41.ebuild,v 1.4 2005/11/11 22:23:32 hparker 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="http://savannah.nongnu.org/download/guile-gtk/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND=">=dev-util/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
}
|