diff options
Diffstat (limited to 'app-cdr/uif2iso/uif2iso-0.1.7a.ebuild')
-rw-r--r-- | app-cdr/uif2iso/uif2iso-0.1.7a.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild b/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild new file mode 100644 index 000000000000..1e678116ff97 --- /dev/null +++ b/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/uif2iso/uif2iso-0.1.7a.ebuild,v 1.1 2009/01/09 15:41:50 flameeyes Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="Converts MagicISO CD-images to iso" +HOMEPAGE="http://aluigi.org/mytoolz.htm#uif2iso" +SRC_URI="mirror://gentoo/${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-libs/zlib" +DEPEND="${RDEPEND} + app-arch/unzip" + +S="${WORKDIR}/src" + +src_compile() { + # Yes we use our own makefile, I'll try to explain this to + # upstream _again_. + emake CC="$(tc-getCC)" -f "${FILESDIR}/0.1.7-Makefile" || die "emake failed" +} + +src_install() { + dobin ${PN} || die "failed to install" + + dodoc "${WORKDIR}"/${PN}.txt "${WORKDIR}"/README +} |