blob: df50bd107980fc6d11b7e2ab06072f50f49288ca (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/xdvdfs-tools/xdvdfs-tools-2.1-r1.ebuild,v 1.1 2005/05/25 23:16:32 chrb Exp $
inherit eutils
DESCRIPTION="Tools for manipulating Xbox ISO images"
HOMEPAGE="http://www.layouts.xbox-scene.com/"
SRC_URI="http://www.layouts.xbox-scene.com/main/files/XDVDFSToolsv2.1.rar"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="app-arch/unrar"
S=${WORKDIR}/"XDVDFS_Tools/src"
src_unpack() {
unrar x ${DISTDIR}/XDVDFSToolsv${PV}.rar
mv "XDVDFS Tools" XDVDFS_Tools
sed -i -e "s:CCFLAGS = .*:CCFLAGS = ${CFLAGS}:g" "${S}"/makefile.prefab
epatch ${FILESDIR}/${P}-fnamefix.patch
mkdir ${S}/xdvdfs_extract/output ${S}/xdvdfs_maker/output
}
src_compile() {
cd ${S}/xdvdfs_dumper
emake || die "xdvdfs_dumper"
cd ../xdvdfs_extract
emake || die "xdvdfs_extract"
cd ../xdvdfs_maker
emake || die "xdvdfs_maker"
}
src_install() {
dobin xdvdfs_dumper/output/xdvdfs_dumper || die "xdvdfs_dumper"
dobin xdvdfs_extract/output/xdvdfs_extract || die "xdvdfs_extract"
dobin xdvdfs_maker/output/xdvdfs_maker || die "xdvdfs_maker"
dohtml ../documentation/*.htm
dodoc ../Readme.txt
}
|