sys-fs/dmg2img: add 1.6.7

This commit is contained in:
Jared Allard 2024-05-24 18:00:33 -07:00
parent f48b3987ce
commit 1abbb42bf1
Signed by: jaredallard
SSH key fingerprint: SHA256:wyRyyv28jBYw8Yp/oABNPUYvbGd6hyZj23XVXEm5G/U
2 changed files with 35 additions and 0 deletions

1
sys-fs/dmg2img/Manifest Normal file
View file

@ -0,0 +1 @@
DIST dmg2img-1.6.7.tar.gz 23238 BLAKE2B d4dc8da2974bc296e8aba21de816413df797322c6194e4ece3d0900d64fcd33084b29be6172a45bdc3f515c2e10544f107be2c7f0e6b7d247cf5d6bc5ad03e2f SHA512 4c42841c5cdbf868b6038648a6c83e78d4b7f2010f7065d7b3f4c2c04d13af9489716c1dfa867aff5f3c3b3eef96dc3fc0610eff13fec139265f37f468e339e6

View file

@ -0,0 +1,34 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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 ~arm64 ~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
}