| 1 |
# Copyright 1999-2013 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/app-cdr/daa2iso/daa2iso-0.1.7e.ebuild,v 1.3 2013/01/08 18:14:12 nimiux Exp $
|
| 4 |
|
| 5 |
EAPI="2"
|
| 6 |
inherit base toolchain-funcs
|
| 7 |
|
| 8 |
DESCRIPTION="Program for converting the DAA and GBI files to ISO"
|
| 9 |
HOMEPAGE="http://aluigi.org/mytoolz.htm"
|
| 10 |
SRC_URI="http://aluigi.org/mytoolz/${PN}.zip -> ${P}.zip"
|
| 11 |
|
| 12 |
LICENSE="GPL-2"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="amd64 x86"
|
| 15 |
IUSE=""
|
| 16 |
|
| 17 |
DEPEND="app-arch/unzip"
|
| 18 |
RDEPEND=""
|
| 19 |
|
| 20 |
S="${WORKDIR}/src"
|
| 21 |
PATCHES=( "${FILESDIR}"/${P}-buildsystem.patch )
|
| 22 |
|
| 23 |
src_compile() {
|
| 24 |
emake CC="$(tc-getCC)" || die "emake failed"
|
| 25 |
}
|
| 26 |
|
| 27 |
src_install() {
|
| 28 |
emake PREFIX="${D}"/usr install || die "emake install failed"
|
| 29 |
}
|