diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 14:16:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 14:16:07 +0000 |
commit | f5d020b5cdc5f50c38a49cc6d777e159d4c0ae6a (patch) | |
tree | db38970b0aee99e8ef1a7e46747ab0aa2f70a68e /app-arch/lzop | |
parent | Added SLOT and KEYWORDS (diff) | |
download | gentoo-2-f5d020b5cdc5f50c38a49cc6d777e159d4c0ae6a.tar.gz gentoo-2-f5d020b5cdc5f50c38a49cc6d777e159d4c0ae6a.tar.bz2 gentoo-2-f5d020b5cdc5f50c38a49cc6d777e159d4c0ae6a.zip |
repoman'd
Diffstat (limited to 'app-arch/lzop')
-rw-r--r-- | app-arch/lzop/lzop-1.00.ebuild | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/app-arch/lzop/lzop-1.00.ebuild b/app-arch/lzop/lzop-1.00.ebuild index 390716240d70..0884e8e834a4 100644 --- a/app-arch/lzop/lzop-1.00.ebuild +++ b/app-arch/lzop/lzop-1.00.ebuild @@ -1,21 +1,20 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-arch/lzop/lzop-1.00.ebuild,v 1.5 2002/07/17 20:44:57 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lzop/lzop-1.00.ebuild,v 1.6 2002/07/25 14:16:07 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Utility for fast (even reat-time) compression/decompression" SRC_URI="http://www.oberhumer.com/opensource/lzop/download/${P}.tar.gz" -SLOT="0" HOMEPAGE="http://www.oberhumer.com/opensource/lzop/" + +SLOT="0" LICENSE="GPL-2" -DEPEND="virtual/glibc - dev-libs/lzo" -RDEPEND="virtual/glibc" +KEYWORDS="x86" -src_compile() { - ./configure --host=${CHOST} \ - --prefix=/usr --disable-shared ||die +DEPEND="dev-libs/lzo" +src_compile() { + econf --disable-shared || die emake || die } @@ -25,5 +24,4 @@ src_install() { dodoc AUTHORS ChangeLog COPYING* NEWS README THANKS dodoc doc/lzop.{txt,ps} dohtml doc/*.html - } |