sys-freebsd/virtio-kmod uses cpio in src_unpack but does not depend on it if cpio is not already installed merging it will fail Reproducible: Always Steps to Reproduce: 1. emerge -C app-arch/cpio 2. emerge sys-freebsd/virtio-kmod Actual Results: src_unpack will fail because cpio is not installed Expected Results: the ebuild should pull in cpio or not use it --- /usr/portage/sys-freebsd/virtio-kmod/virtio-kmod-0.228301-r1.ebuild 2012-06-14 17:45:32.000000000 +0200 +++ virtio-kmod-0.228301-r1.ebuild 2013-05-31 11:26:53.000000000 +0200 @@ -15,7 +15,8 @@ IUSE="custom-cflags +debug" LICENSE="BSD-2" -DEPEND=">=sys-freebsd/freebsd-sources-8.2" +DEPEND=">=sys-freebsd/freebsd-sources-8.2 + app-arch/cpio" RDEPEND="" QA_TEXTRELS="*"
Fixed in tree. Thanks for the report.