diff options
Diffstat (limited to 'app-backup/bup/bup-9999.ebuild')
-rw-r--r-- | app-backup/bup/bup-9999.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app-backup/bup/bup-9999.ebuild b/app-backup/bup/bup-9999.ebuild index 7c4e92b..1601f84 100644 --- a/app-backup/bup/bup-9999.ebuild +++ b/app-backup/bup/bup-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=3 +EAPI=4 inherit git eutils DESCRIPTION="It backs things up based on the git packfile format" @@ -27,17 +27,18 @@ DEPEND="|| ( RDEPEND="${DEPEND}" src_compile() { - emake || die "emake failed" + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() { - emake install DESTDIR="${D}" || die "emake install failed" + emake install DESTDIR="${D}" - dodoc "${D}/usr/share/doc/${PN}"/* && rm -r "${D}/usr/share/doc/${PN}/" + dodoc "${D}/usr/share/doc/${PN}"/* + rm -r "${D}/usr/share/doc/${PN}/" || die dodoc README DESIGN } src_test() { - emake test || die "emake test failed" + emake test } |