forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdvdfs-tools-2.1-r1.ebuild
45 lines (37 loc) · 1.12 KB
/
xdvdfs-tools-2.1-r1.ebuild
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
44
45
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit eutils toolchain-funcs
DESCRIPTION="Tools for manipulating Xbox ISO images"
HOMEPAGE="http://www.layouts.xbox-scene.com/"
SRC_URI="http://www.layouts.xbox-scene.com/main/files/XDVDFSToolsv${PV}.rar"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="|| ( app-arch/unrar app-arch/rar )"
RDEPEND=""
S=${WORKDIR}/XDVDFS_Tools/src
src_unpack() {
unpack ${A}
mv "XDVDFS Tools" XDVDFS_Tools
sed -i \
-e '/^LDFLAGS = -s/d' \
-e '/^CCFLAGS =/s:=.*:= ${CFLAGS} ${CPPFLAGS}:g' \
-e "/^CC =/s:=.*:=$(tc-getCC):" \
"${S}"/makefile.prefab
epatch "${FILESDIR}"/${P}-fnamefix.patch
mkdir "${S}"/xdvdfs_extract/output "${S}"/xdvdfs_maker/output
}
src_compile() {
local d
for d in xdvdfs_{dumper,extract,maker} ; do
emake -C ${d} || die
done
}
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
}