From 8634e867df221165f30d7a130b266daafc17b7ca Mon Sep 17 00:00:00 2001 From: Amy Liffey Date: Wed, 9 Aug 2017 14:45:45 +0200 Subject: [PATCH] app-crypt/gifshuffle: EAPI 6 bump Package-Manager: Portage-2.3.6, Repoman-2.3.1 --- ...{gifshuffle-2.0.ebuild => gifshuffle-2.0-r1.ebuild} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) rename app-crypt/gifshuffle/{gifshuffle-2.0.ebuild => gifshuffle-2.0-r1.ebuild} (74%) diff --git a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild similarity index 74% rename from app-crypt/gifshuffle/gifshuffle-2.0.ebuild rename to app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild index 219f1830c348c..c2a8cfb2d9de6 100644 --- a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild +++ b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + inherit toolchain-funcs DESCRIPTION="GIF colourmap steganography" @@ -15,14 +17,14 @@ IUSE="" DEPEND="" RDEPEND="" -S="${WORKDIR}"/${PN} +S="${WORKDIR}/${PN}" src_compile() { - echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c + echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die "Cannot compile ${PN}" } src_install() { - dobin ${PN} || die "Cannot install ${PN}" + dobin ${PN} dodoc gshuf.txt }