# Removal in 30 days. Bug #693934.
sys-fs/scan-ffs
-# Michał Górny <mgorny@gentoo.org> (2019-09-09)
-# Added in 2005, not bumped since. Last upstream release in 2007.
-# EAPI 0. No amd64 keyword.
-# Removal in 30 days. Bug #693932.
-sys-cluster/ocfs
-
# Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
# Unofficial build. Superseded by official 2.49.5 release.
# Masked for removal.
+++ /dev/null
-DIST ocfs-1.0.14.tar.gz 467237 BLAKE2B 5736e144746b6b8055551ac7388397c3cf78502f962a7ce83fcae2e1a28e88c15c790025c4680b94bca4f183be0cf0cfa942a21236690e7fa04e47ecb965b90b SHA512 0a081806ef65bb988a85d65221210748b3b6eaeb1191dde333120090c8d54818549bdeadd72dd814497d3aa4053ef474ade18c4ced8cbf3423785ff6fb404264
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>cluster@gentoo.org</email>
- <name>Gentoo Cluster Project</name>
-</maintainer>
-<use>
- <flag name="aio">Add aio support</flag>
-</use>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit linux-mod
-
-DESCRIPTION="The Oracle Cluster Filesystem"
-SRC_URI="http://oss.oracle.com/projects/ocfs/dist/files/source/${P}.tar.gz"
-HOMEPAGE="http://oss.oracle.com/projects/ocfs"
-LICENSE="GPL-2"
-
-DEPEND="virtual/linux-sources"
-
-IUSE="aio"
-SLOT="0"
-KEYWORDS="~x86"
-
-pkg_setup() {
- if kernel_is -ge 2 6; then
- die "${P} supports only 2.4 kernels"
- fi
-}
-
-src_compile() {
- set_arch_to_kernel
- local myconf
- use aio && myconf="--enable-aio=yes" || myconf="--enable-aio=no"
-
- econf \
- --with-kernel=${KV_DIR} \
- ${myconf} \
- || die
-
- emake || die
-}
-
-src_install() {
- einstall DESTDIR=${D} || die "Failed to install"
-
- dodir /etc/ocfs
- insinto /etc/ocfs
- doins ocfs2/ocfs.conf
-
- dodoc README docs/ocfs_doc.zip || die
-}
-
-pkg_postinst() {
- linux-mod_pkg_postinst
-
- einfo ""
- einfo "Please remember to re-emerge ${PN} when you upgrade your kernel!"
- einfo ""
- einfo "Please edit the configuration file /etc/ocfs/ocfs.conf"
- einfo ""
-}