diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-23 07:13:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-23 07:13:54 +0000 |
commit | 44ed0d9bbf5168a45e9064369a5395bda6d45f99 (patch) | |
tree | 18236e7286cc94731664e04757484638bb2ce935 /x11-libs/guile-gtk | |
parent | fixed logic used on alpha patch in src_unpack (diff) | |
download | historical-44ed0d9bbf5168a45e9064369a5395bda6d45f99.tar.gz historical-44ed0d9bbf5168a45e9064369a5395bda6d45f99.tar.bz2 historical-44ed0d9bbf5168a45e9064369a5395bda6d45f99.zip |
touch ups
Diffstat (limited to 'x11-libs/guile-gtk')
-rw-r--r-- | x11-libs/guile-gtk/guile-gtk-0.19.ebuild | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/x11-libs/guile-gtk/guile-gtk-0.19.ebuild b/x11-libs/guile-gtk/guile-gtk-0.19.ebuild index 81477dcae00f..e4954c8d42c7 100644 --- a/x11-libs/guile-gtk/guile-gtk-0.19.ebuild +++ b/x11-libs/guile-gtk/guile-gtk-0.19.ebuild @@ -1,8 +1,7 @@ # 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 $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/guile-gtk/guile-gtk-0.19.ebuild,v 1.2 2002/11/23 07:13:54 vapier 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/" @@ -14,17 +13,15 @@ SLOT="0" DEPEND="=dev-util/guile-1.4* =x11-libs/gtk+-1.2*" - src_compile() { - econf || die "configure failed!" - emake || die + econf + emake || die } src_install() { - einstall || die + einstall - dodoc INSTALL README* COPYING AUTHORS Changelog NEWS TODO - insinto ${D}/usr/share/guile-gtk/examples - doins ${S}/examples/*.scm ${S}/examples/*.xpm + dodoc INSTALL README* COPYING AUTHORS Changelog NEWS TODO + insinto ${D}/usr/share/guile-gtk/examples + doins ${S}/examples/*.scm ${S}/examples/*.xpm } - |