2015-01-09 23:08:52 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-09-22 14:32:53 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2014-09-22 14:32:53 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
inherit toolchain-funcs
|
|
|
|
|
|
|
|
DESCRIPTION="Lziprecover is a data recovery tool and decompressor for files in the lzip compressed data format"
|
|
|
|
HOMEPAGE="http://www.nongnu.org/lzip/lziprecover.html"
|
|
|
|
SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz"
|
2015-07-07 21:30:57 +03:00
|
|
|
LICENSE="GPL-2+"
|
2014-09-22 14:32:53 +04:00
|
|
|
SLOT="0"
|
2015-01-26 19:40:42 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2014-09-22 14:32:53 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
# not autotools-based
|
|
|
|
./configure \
|
|
|
|
--prefix="${EPREFIX}"/usr \
|
|
|
|
CXX="$(tc-getCXX)" \
|
|
|
|
CPPFLAGS="${CPPFLAGS}" \
|
|
|
|
CXXFLAGS="${CXXFLAGS}" \
|
|
|
|
LDFLAGS="${LDFLAGS}" || die
|
|
|
|
}
|