diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-09-21 22:33:11 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-09-21 22:33:11 +0000 |
commit | d1a58970b9ab8f14bb4ffe8f1acd3a25fa9963a4 (patch) | |
tree | 524b985763d78c6149d9a2820ca6fd10ecbea2ee /dev-libs/lzo/lzo-1.08.ebuild | |
parent | new version, cleaned up pre-r9 stuff (diff) | |
download | historical-d1a58970b9ab8f14bb4ffe8f1acd3a25fa9963a4.tar.gz historical-d1a58970b9ab8f14bb4ffe8f1acd3a25fa9963a4.tar.bz2 historical-d1a58970b9ab8f14bb4ffe8f1acd3a25fa9963a4.zip |
LZO 1.08
Diffstat (limited to 'dev-libs/lzo/lzo-1.08.ebuild')
-rw-r--r-- | dev-libs/lzo/lzo-1.08.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-libs/lzo/lzo-1.08.ebuild b/dev-libs/lzo/lzo-1.08.ebuild new file mode 100644 index 000000000000..26b29a7e33c7 --- /dev/null +++ b/dev-libs/lzo/lzo-1.08.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-1.08.ebuild,v 1.1 2002/09/21 22:33:11 drobbins Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="An extremely fast compression and decompression library" +HOMEPAGE="http://www.oberhumer.com/opensource/lzo/" +SRC_URI="http://www.oberhumer.com/opensource/lzo/download/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc sparc64" + +DEPEND="virtual/glibc" + +src_compile() { + econf --enable-shared || die + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README THANKS doc/LZO* + docinto examples + dodoc examples/*.c examples/Makefile +} |