# app-misc/rofs-bug-demo # Demonstrates bug whereby Portage fails to recognize a read-only filesystem # during emerge --clean inherit base DESCRIPTION="Demonstrates a Portage bug" HOMEPAGE="http://www.gentoo.org/" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="" PATCHES="" src_unpack() { echo "Nothing to unpack." } src_compile() { echo "Nothing to compile." } src_install() { mkdir -p ${D}/mnt echo "I will still exist after my package is unmerged." >${D}/mnt/rofs-bug-demo.foo }