app-arch/unadf: drop vulnerable

Bug: https://bugs.gentoo.org/636388
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8406
This commit is contained in:
Aaron Bauman
2018-05-14 18:35:14 -04:00
parent 93eba83ee6
commit 3a8db29939
2 changed files with 0 additions and 42 deletions

View File

@@ -1,2 +1 @@
DIST adflib-0.7.12.tar.bz2 135412 BLAKE2B 964ef195c0539779c33acb2f3c103f97f7fd7f78bb32a83af9d586157700664f5e531908121aea8234592bb00fb8bff2e8f754e620f989d6d4e52537675c030e SHA512 d63846f0780bd57cae5ff667eb70f98a0ba3659cfd0b12b3ae2f29ac96631e522088f911b1ba6e5ee3b00620a28a802f14d93cdf8462e18a7e3f749915ab5af3
DIST adflib.zip 254914 BLAKE2B 9683ea4edbeb7254e0c162140063e2aa53e183aba31b4b7bf1ab498a5bb218ae687a54d87e50cc2b15e5725a2f77c16e9ca4dba23b5d5a373f513747839055a9 SHA512 fe8edf5247ba82e475f62f96fcb72d50bf80641e14e957c99694def98735eb327a67208e3460504a0d109c9497d6e81f0cd8ce07ddc73486adc9e7070a75074a

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
inherit eutils
DESCRIPTION="Extract files from Amiga adf disk images"
SRC_URI="mirror://gentoo/adflib.zip"
HOMEPAGE="http://lclevy.free.fr/adflib/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="hppa ppc x86 ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE=""
DEPEND="app-arch/unzip
x11-misc/makedepend"
RDEPEND=""
src_unpack() {
mkdir "${S}"
cd "${S}"
unzip "${DISTDIR}"/adflib.zip
epatch "${FILESDIR}"/no.in_path.patch
}
src_compile() {
cd "${S}"/Lib && make depend || die "make failed"
cd "${S}"/Demo && make depend || die "make failed"
cd "${S}" && emake lib demo || die "emake failed"
}
src_install() {
dobin Demo/unadf
dodoc README CHANGES Faq/adf_info.txt
docinto Docs
dodoc Docs/*
docinto Faq
dodoc Faq/*
docinto Faq/image
dodoc Faq/image/*
}