dev-scheme/ypsilon: add missing dep bug #514610
authorAmy Liffey <amynka@gentoo.org>
Sat, 14 Jan 2017 19:14:33 +0000 (20:14 +0100)
committerAmy Liffey <amynka@gentoo.org>
Sat, 14 Jan 2017 19:15:09 +0000 (20:15 +0100)
Package-Manager: portage-2.3.0

dev-scheme/ypsilon/ypsilon-0.9.6_p3.ebuild

index 52be79803fed4b7dacb26afb7df6292b085368b6..52a56a7722a9b34c245e0d5e978acdc8c176269a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 EAPI=5
@@ -15,10 +15,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="examples threads"
 
-DEPEND=""
+DEPEND="app-arch/cpio"
 RDEPEND="${DEPEND}"
 
-S=${WORKDIR}/${MY_P}
+S="${WORKDIR}/${MY_P}"
 
 src_prepare() {
        epatch "${FILESDIR}"/${P}-asneeded.patch
@@ -28,13 +28,13 @@ src_compile() {
        use threads && append-flags "-pthread"
 
        emake PREFIX="/usr" CXX="$(tc-getCXX)" \
-               CXXFLAGS="${CXXFLAGS}" LDFLAGS="$LDFLAGS"  || die "emake failed"
+               CXXFLAGS="${CXXFLAGS}" LDFLAGS="$LDFLAGS"
 }
 
 src_install() {
-       emake PREFIX="/usr" DESTDIR="${D}" install || die "Install failed"
+       emake PREFIX="/usr" DESTDIR="${D}" install
        if use examples; then
                insinto /usr/share/doc/${PF}/examples
-               doins example/* || die "Failed to install examples"
+               doins example/*
        fi
 }