You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
877 B
40 lines
877 B
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs flag-o-matic unpacker
|
|
|
|
DESCRIPTION="Copy data from one file or block device to another with read-error recovery"
|
|
HOMEPAGE="https://www.gnu.org/software/ddrescue/ddrescue.html"
|
|
SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux"
|
|
IUSE="static"
|
|
|
|
DEPEND="$(unpacker_src_uri_depends)"
|
|
RDEPEND=""
|
|
|
|
src_configure() {
|
|
use static && append-ldflags -static
|
|
|
|
# not a normal configure script
|
|
econf \
|
|
--prefix="${EPREFIX}"/usr \
|
|
CXX="$(tc-getCXX)" \
|
|
CPPFLAGS="${CPPFLAGS}" \
|
|
CXXFLAGS="${CXXFLAGS}" \
|
|
LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
src_test() {
|
|
./testsuite/check.sh "${S}"/testsuite || die
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install install-man
|
|
einstalldocs
|
|
}
|