diff options
Diffstat (limited to 'app-arch/lzip/lzip-1.8.ebuild')
-rw-r--r-- | app-arch/lzip/lzip-1.8.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-arch/lzip/lzip-1.8.ebuild b/app-arch/lzip/lzip-1.8.ebuild new file mode 100644 index 000000000000..8fa8a3b319ce --- /dev/null +++ b/app-arch/lzip/lzip-1.8.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/lzip/lzip-1.8.ebuild,v 1.1 2009/09/26 17:04:22 vapier Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="lossless data compressor based on the LZMA algorithm" +HOMEPAGE="http://www.nongnu.org/lzip/lzip.html" +SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.4-build.patch + tc-export CC CXX +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc AUTHORS README NEWS ChangeLog +} |