# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Id$ MY_PV=${PV/_beta/b} S=${WORKDIR}/${PN} SRC_URI="mirror://sourceforge/extract-xiso/${PN}_src_v${MY_PV}.tgz" DESCRIPTION="Tool for extracting and creating optimised Xbox ISO images" HOMEPAGE="http://sourceforge.net/projects/extract-xiso" SLOT="0" LICENSE="BSD" KEYWORDS="~x86" IUSE="" DEPEND="" src_compile() { # For some reason the build fails even though it succeeds. # So I'll just look for the resulting file. emake if [ ! -x extract-xiso ]; then die Error compiling fi } src_install() { dobin extract-xiso }