diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-09-18 21:16:39 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-09-18 21:16:39 +0000 |
commit | 8814bd8b92e796a03aeec9f564a0e2126fff4e2a (patch) | |
tree | 3d9cb3b63dbb6ddb8920ad5ea59ba4c7c79d6a8e /dev-libs/g-wrap | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-8814bd8b92e796a03aeec9f564a0e2126fff4e2a.tar.gz gentoo-2-8814bd8b92e796a03aeec9f564a0e2126fff4e2a.tar.bz2 gentoo-2-8814bd8b92e796a03aeec9f564a0e2126fff4e2a.zip |
*** empty log message ***
Diffstat (limited to 'dev-libs/g-wrap')
-rw-r--r-- | dev-libs/g-wrap/files/digest-g-wrap-0.9.5 | 1 | ||||
-rw-r--r-- | dev-libs/g-wrap/g-wrap-0.9.5.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-libs/g-wrap/files/digest-g-wrap-0.9.5 b/dev-libs/g-wrap/files/digest-g-wrap-0.9.5 new file mode 100644 index 000000000000..605ba7e10017 --- /dev/null +++ b/dev-libs/g-wrap/files/digest-g-wrap-0.9.5 @@ -0,0 +1 @@ +MD5 0df68c8b52d3ffdde0ea330be60c3bce g-wrap-0.9.5.tar.gz diff --git a/dev-libs/g-wrap/g-wrap-0.9.5.ebuild b/dev-libs/g-wrap/g-wrap-0.9.5.ebuild new file mode 100644 index 000000000000..675575ede289 --- /dev/null +++ b/dev-libs/g-wrap/g-wrap-0.9.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/g-wrap/g-wrap-0.9.5.ebuild,v 1.1 2000/09/18 21:16:39 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A tool for exporting C libraries into Scheme" +SRC_URI="ftp://ftp.gnucash.org/pub/g-wrap/source/${A}" +HOMEPAGE="http://" + + +src_compile() { + + cd ${S} + try ./configure --prefix=/usr --host=${CHOST} + try make + +} + +src_install () { + + cd ${S} + try make DESTDIR=${D} install + +} + |