You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
660 B
36 lines
660 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=4
|
|
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/${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}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin dmg2img vfdecrypt
|
|
dodoc README
|
|
doman vfdecrypt.1
|
|
}
|