diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-01-16 18:56:18 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-01-16 18:56:18 +0000 |
commit | 6c37384fe555cac0a652424287d19232d151dc48 (patch) | |
tree | c5d0aa310d4999990365f1be507d935a0563a91c /x11-libs | |
parent | New version (diff) | |
download | gentoo-2-6c37384fe555cac0a652424287d19232d151dc48.tar.gz gentoo-2-6c37384fe555cac0a652424287d19232d151dc48.tar.bz2 gentoo-2-6c37384fe555cac0a652424287d19232d151dc48.zip |
New ebuild. LIBrary of Assorted Spiffy Things needed for Eterm 0.9.1.
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libast/files/digest-libast-0.4 | 1 | ||||
-rw-r--r-- | x11-libs/libast/libast-0.4.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/x11-libs/libast/files/digest-libast-0.4 b/x11-libs/libast/files/digest-libast-0.4 new file mode 100644 index 000000000000..05f989924277 --- /dev/null +++ b/x11-libs/libast/files/digest-libast-0.4 @@ -0,0 +1 @@ +MD5 9424286314c1d816699b28964b91d015 libast-0.4.tar.gz 155648 diff --git a/x11-libs/libast/libast-0.4.ebuild b/x11-libs/libast/libast-0.4.ebuild new file mode 100644 index 000000000000..1d745a234ab0 --- /dev/null +++ b/x11-libs/libast/libast-0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Grant Goodyear <g2boojum@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libast/libast-0.4.ebuild,v 1.1 2002/01/16 18:56:17 g2boojum Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="LIBrary of Assorted Spiffy Things. Needed for Eterm." +SRC_URI="http://www.eterm.org/download/${P}.tar.gz" +HOMEPAGE="http://www.eterm.org/download" + +DEPEND="virtual/glibc + virtual/x11 + >=media-libs/freetype-1.3" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc README +} |