diff options
author | David Seifert <soap@gentoo.org> | 2017-12-29 13:25:43 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-29 14:16:27 +0100 |
commit | f2c1b80c33642d0347e8e5f6a7f38ccb5d6b8786 (patch) | |
tree | 1a5137826fb8d8899215c519aaece7dd92d05f4b /app-arch/rzip | |
parent | app-arch/par: Port to EAPI 6 (diff) | |
download | gentoo-f2c1b80c33642d0347e8e5f6a7f38ccb5d6b8786.tar.gz gentoo-f2c1b80c33642d0347e8e5f6a7f38ccb5d6b8786.tar.bz2 gentoo-f2c1b80c33642d0347e8e5f6a7f38ccb5d6b8786.zip |
app-arch/rzip: Port to EAPI 6
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-arch/rzip')
-rw-r--r-- | app-arch/rzip/rzip-2.1-r2.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app-arch/rzip/rzip-2.1-r2.ebuild b/app-arch/rzip/rzip-2.1-r2.ebuild index 1c8043ac3fb6..75233dfea457 100644 --- a/app-arch/rzip/rzip-2.1-r2.ebuild +++ b/app-arch/rzip/rzip-2.1-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=6 -inherit autotools eutils +inherit autotools DESCRIPTION="Compression program for large files" HOMEPAGE="https://rzip.samba.org/" @@ -14,17 +14,17 @@ SLOT="0" KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" -DEPEND="app-arch/bzip2" +RDEPEND="app-arch/bzip2:=" +DEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-2.1-darwin.patch ) src_prepare() { - epatch "${FILESDIR}"/${PN}-2.1-darwin.patch + default + mv configure.{in,ac} || die eautoreconf } -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." -} - pkg_postinst() { ewarn "Warning: Gentoo shipped a broken rzip for quite some time. During" ewarn "compression of large files it didn't set the right file size, so" |