blob: 327398e4c73efb6fb35858388280add7c669c481 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dmg2img/dmg2img-1.6.2.ebuild,v 1.0 2010/07/17 10:34:24 menelkir Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="Converts Apple DMG files to standard HFS+ images"
HOMEPAGE="http://vu1tur.eu.org/tools"
SRC_URI="http://vu1tur.eu.org/tools/download.pl?${P}.tar.gz"
#SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="dev-libs/openssl
app-arch/bzip2
sys-libs/zlib"
DEPEND="${RDEPEND}
sys-apps/sed"
src_prepare() {
sed -i -e 's:-s:$(LDFLAGS):g' Makefile || die "sed failed"
}
src_compile() {
tc-export CC
emake CFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dosbin dmg2img vfdecrypt || die "dosbin failed"
dodoc README
}
|