diff options
author | 2017-05-18 04:20:31 +0300 | |
---|---|---|
committer | 2017-05-18 20:31:55 +0200 | |
commit | f10528b3136e6d137a8e385c52ecb0b6a33723bb (patch) | |
tree | 275f331f8936fc80cac4ad9a2e3e7c62cbc783a0 /app-cdr/ccd2iso/ccd2iso-0.3.ebuild | |
parent | sys-apps/portage: arm64 stable (bug 617168). (diff) | |
download | gentoo-f10528b3136e6d137a8e385c52ecb0b6a33723bb.tar.gz gentoo-f10528b3136e6d137a8e385c52ecb0b6a33723bb.tar.bz2 gentoo-f10528b3136e6d137a8e385c52ecb0b6a33723bb.zip |
app-cdr/ccd2iso: EAPI="6", correct LICENSE, epatch -> eapply, Mac
Closes: https://github.com/gentoo/gentoo/pull/4665
Diffstat (limited to 'app-cdr/ccd2iso/ccd2iso-0.3.ebuild')
-rw-r--r-- | app-cdr/ccd2iso/ccd2iso-0.3.ebuild | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/app-cdr/ccd2iso/ccd2iso-0.3.ebuild b/app-cdr/ccd2iso/ccd2iso-0.3.ebuild index 5de87f72e89a..5de8728f6ab2 100644 --- a/app-cdr/ccd2iso/ccd2iso-0.3.ebuild +++ b/app-cdr/ccd2iso/ccd2iso-0.3.ebuild @@ -1,26 +1,18 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -inherit eutils +EAPI="6" -DESCRIPTION="Converts CloneCD images (popular under Windows) to ISOs" +DESCRIPTION="Convert CD images from ccd (CloneCD) to iso" HOMEPAGE="https://sourceforge.net/projects/ccd2iso/" SRC_URI="mirror://sourceforge/ccd2iso/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" -IUSE="" - -DEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-headers.patch -} +KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" +PATCHES=( "${FILESDIR}/${P}-headers.patch" ) src_install() { - emake install DESTDIR="${D}" || die + emake install DESTDIR="${D}" dodoc AUTHORS ChangeLog NEWS README TODO } |