summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-07 15:18:55 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-07 15:53:23 +0200
commit39c42f0fb2fb786cfd6f14a9bd10e5a16bd324d4 (patch)
tree0e783d0f06fc82f95ae08ef5acacf97b58719bb0 /sys-fs
parentapp-accessibility/freetts: Drop old (EAPI=0) (diff)
downloadgentoo-39c42f0fb2fb786cfd6f14a9bd10e5a16bd324d4.tar.gz
gentoo-39c42f0fb2fb786cfd6f14a9bd10e5a16bd324d4.tar.bz2
gentoo-39c42f0fb2fb786cfd6f14a9bd10e5a16bd324d4.zip
sys-fs/diskdev_cmds: Drop old (EAPI=0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1.ebuild b/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1.ebuild
deleted file mode 100644
index 6b608a1b6315..000000000000
--- a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-MY_PV=${PV%_p*}
-
-DESCRIPTION="HFS and HFS+ utils ported from OSX, supplies mkfs and fsck"
-HOMEPAGE="http://opendarwin.org"
-SRC_URI="http://darwinsource.opendarwin.org/tarballs/apsl/diskdev_cmds-${MY_PV}.tar.gz
- mirror://gentoo/diskdev_cmds-${PV}.patch.bz2"
-LICENSE="APSL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
-IUSE=""
-DEPEND="dev-libs/openssl"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${WORKDIR}"/diskdev_cmds-${PV}.patch
- epatch "${FILESDIR}"/diskdev_cmds-respect-cflags.patch
-}
-
-src_compile() {
- emake -f Makefile.lnx || die "emake failed"
-}
-
-src_install() {
- into /
- dosbin fsck_hfs.tproj/fsck_hfs || die "dosbin fsck failed"
- dosbin newfs_hfs.tproj/newfs_hfs || die "dosbin newfs failed"
- dosym /sbin/newfs_hfs /sbin/mkfs.hfs || die "dosym mkfs.hfs failed"
- dosym /sbin/newfs_hfs /sbin/mkfs.hfsplus || die "dosym mkfs.hfsplus failed"
- dosym /sbin/fsck_hfs /sbin/fsck.hfs || die "dosym fsck.hfs failed"
- dosym /sbin/fsck_hfs /sbin/fsck.hfsplus || die "dosym fsck.hfsplus failed"
- doman newfs_hfs.tproj/newfs_hfs.8 || die "doman newfs_hfs.8 failed"
- newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfs.8 || die "doman mkfs.hfs.8 failed"
- newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfsplus.8 || die "doman mkfs.hfsplus.8 failed"
- doman fsck_hfs.tproj/fsck_hfs.8 || die "doman fsck_hfs.8 failed"
- newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfs.8 || die "doman fsck.hfs.8 failed"
- newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfsplus.8 || die "doman fsck.hfsplus.8 failed"
-}