Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/gifshuffle/
Date: Wed, 09 Aug 2017 12:46:26
Message-Id: 1502282745.8634e867df221165f30d7a130b266daafc17b7ca.amynka@gentoo
1 commit: 8634e867df221165f30d7a130b266daafc17b7ca
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 9 12:45:45 2017 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 9 12:45:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8634e867
7
8 app-crypt/gifshuffle: EAPI 6 bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 .../{gifshuffle-2.0.ebuild => gifshuffle-2.0-r1.ebuild} | 10 ++++++----
13 1 file changed, 6 insertions(+), 4 deletions(-)
14
15 diff --git a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild
16 similarity index 74%
17 rename from app-crypt/gifshuffle/gifshuffle-2.0.ebuild
18 rename to app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild
19 index 219f1830c34..c2a8cfb2d9d 100644
20 --- a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild
21 +++ b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild
22 @@ -1,6 +1,8 @@
23 -# Copyright 1999-2009 Gentoo Foundation
24 +# Copyright 1999-2017 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 +EAPI=6
28 +
29 inherit toolchain-funcs
30
31 DESCRIPTION="GIF colourmap steganography"
32 @@ -15,14 +17,14 @@ IUSE=""
33 DEPEND=""
34 RDEPEND=""
35
36 -S="${WORKDIR}"/${PN}
37 +S="${WORKDIR}/${PN}"
38
39 src_compile() {
40 - echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c
41 + echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die
42 $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die "Cannot compile ${PN}"
43 }
44
45 src_install() {
46 - dobin ${PN} || die "Cannot install ${PN}"
47 + dobin ${PN}
48 dodoc gshuf.txt
49 }