sys-fs/cramfs: convert to EAPI=5
authorMike Frysinger <vapier@gentoo.org>
Mon, 18 Apr 2016 22:44:54 +0000 (18:44 -0400)
committerMike Frysinger <vapier@gentoo.org>
Mon, 18 Apr 2016 22:44:54 +0000 (18:44 -0400)
sys-fs/cramfs/cramfs-1.1.ebuild

index 557bcb1f21497e205b23577967f52d045877f8ec..42a69d6f1254d9ae9c809be5aa838239b434a1c3 100644 (file)
@@ -1,11 +1,12 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
+
+EAPI="5"
 
 inherit toolchain-funcs
 
 DESCRIPTION="Linux filesystem designed to be simple, small, and to compress things well"
-HOMEPAGE="http://sourceforge.net/projects/cramfs/"
+HOMEPAGE="https://sourceforge.net/projects/cramfs/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
@@ -14,13 +15,14 @@ KEYWORDS="alpha amd64 ppc ~sparc x86"
 IUSE=""
 
 DEPEND="sys-libs/zlib"
+RDEPEND="${DEPEND}"
 
 src_compile() {
-       emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die
+       emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)"
 }
 
 src_install() {
        into /
-       dosbin mkcramfs cramfsck || die
+       dosbin mkcramfs cramfsck
        dodoc README NOTES
 }