blob: 8b8fc4bacf816fb72c0b1fa02a4a37ccc5b7b39b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/nrg2iso/nrg2iso-0.1.ebuild,v 1.7 2005/01/01 12:20:35 eradicator Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Converts Nero nrg CD-images to iso"
HOMEPAGE="http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html"
SRC_URI="http://gregory.kokanosky.free.fr/v4/linux/${PN}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}/${PN}
src_compile() {
$(tc-getCC) ${CFLAGS} -o nrg2iso nrg2iso.c || die "failed to compile"
}
src_install() {
dobin nrg2iso || die
}
|