From 8634e867df221165f30d7a130b266daafc17b7ca Mon Sep 17 00:00:00 2001 From: Amy Liffey Date: Wed, 9 Aug 2017 14:45:45 +0200 Subject: app-crypt/gifshuffle: EAPI 6 bump Package-Manager: Portage-2.3.6, Repoman-2.3.1 --- app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild | 30 +++++++++++++++++++++++++++ app-crypt/gifshuffle/gifshuffle-2.0.ebuild | 28 ------------------------- 2 files changed, 30 insertions(+), 28 deletions(-) create mode 100644 app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild delete mode 100644 app-crypt/gifshuffle/gifshuffle-2.0.ebuild (limited to 'app-crypt/gifshuffle') diff --git a/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild new file mode 100644 index 000000000000..c2a8cfb2d9de --- /dev/null +++ b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild @@ -0,0 +1,30 @@ +# 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" +HOMEPAGE="http://www.darkside.com.au/gifshuffle/" +SRC_URI="http://www.darkside.com.au/gifshuffle/${PN}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${PN}" + +src_compile() { + echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die + $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die "Cannot compile ${PN}" +} + +src_install() { + dobin ${PN} + dodoc gshuf.txt +} diff --git a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild b/app-crypt/gifshuffle/gifshuffle-2.0.ebuild deleted file mode 100644 index 219f1830c348..000000000000 --- a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit toolchain-funcs - -DESCRIPTION="GIF colourmap steganography" -HOMEPAGE="http://www.darkside.com.au/gifshuffle/" -SRC_URI="http://www.darkside.com.au/gifshuffle/${PN}.tar.gz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}"/${PN} - -src_compile() { - echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c - $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die "Cannot compile ${PN}" -} - -src_install() { - dobin ${PN} || die "Cannot install ${PN}" - dodoc gshuf.txt -} -- cgit v1.2.3-65-gdbad