diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-10-23 19:36:28 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-10-23 19:36:28 +0000 |
commit | 103afbfbaf7d5720b97d1dafa30c0d05fec13d79 (patch) | |
tree | 1f42f65e61774239ce61e5d14c3084931484cab1 /x11-libs/guile-gtk | |
parent | new revision gets us closer to working with gcc-3.2 (diff) | |
download | gentoo-2-103afbfbaf7d5720b97d1dafa30c0d05fec13d79.tar.gz gentoo-2-103afbfbaf7d5720b97d1dafa30c0d05fec13d79.tar.bz2 gentoo-2-103afbfbaf7d5720b97d1dafa30c0d05fec13d79.zip |
initial package of guile-gtk, old and stable build for old and stable guile
Diffstat (limited to 'x11-libs/guile-gtk')
-rw-r--r-- | x11-libs/guile-gtk/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/guile-gtk/files/digest-guile-gtk-0.19 | 1 | ||||
-rw-r--r-- | x11-libs/guile-gtk/guile-gtk-0.19.ebuild | 30 |
3 files changed, 39 insertions, 0 deletions
diff --git a/x11-libs/guile-gtk/ChangeLog b/x11-libs/guile-gtk/ChangeLog new file mode 100644 index 000000000000..809dfa998342 --- /dev/null +++ b/x11-libs/guile-gtk/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for x11-libs/guile-gtk +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/guile-gtk/ChangeLog,v 1.1 2002/10/23 19:36:28 spider Exp $ + +*guile-gtk-0.19 (23 Oct 2002) + 23 Oct 2002; Spider <spider@gentoo.org> guile-gtk-0.19.ebuild :initial + release, package provided by <jonner@mailandnews.com> " Jonathan Rogers" And edited by me. + diff --git a/x11-libs/guile-gtk/files/digest-guile-gtk-0.19 b/x11-libs/guile-gtk/files/digest-guile-gtk-0.19 new file mode 100644 index 000000000000..7a69c6579c35 --- /dev/null +++ b/x11-libs/guile-gtk/files/digest-guile-gtk-0.19 @@ -0,0 +1 @@ +MD5 ec4c28e1edfc21e075046eae6b99d945 guile-gtk-0.19.tar.gz 278896 diff --git a/x11-libs/guile-gtk/guile-gtk-0.19.ebuild b/x11-libs/guile-gtk/guile-gtk-0.19.ebuild new file mode 100644 index 000000000000..81477dcae00f --- /dev/null +++ b/x11-libs/guile-gtk/guile-gtk-0.19.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-libs/guile-gtk/guile-gtk-0.19.ebuild,v 1.1 2002/10/23 19:36:28 spider Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="GTK+ bindings for guile" +SRC_URI="http://www.ping.de/sites/zagadka/guile-gtk/download/guile-gtk-0.19.tar.gz" +HOMEPAGE="http://www.ping.de/sites/zagadka/guile-gtk/" + +KEYWORDS="~x86" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="=dev-util/guile-1.4* + =x11-libs/gtk+-1.2*" + + +src_compile() { + econf || die "configure failed!" + emake || die +} + +src_install() { + einstall || die + + dodoc INSTALL README* COPYING AUTHORS Changelog NEWS TODO + insinto ${D}/usr/share/guile-gtk/examples + doins ${S}/examples/*.scm ${S}/examples/*.xpm +} + |