summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2016-11-11 10:05:42 +0100
committerJustin Lecher <jlec@gentoo.org>2016-11-11 10:05:42 +0100
commit76e59488b537220c9bb52ac28c898c4a492308a4 (patch)
treebeeba2f7bd7f816c551f25eb6e7bc679c8016214 /sys-cluster/singularity
parentsys-cluster/singularity: New package, ebuild written by me (diff)
downloadgentoo-76e59488b537220c9bb52ac28c898c4a492308a4.tar.gz
gentoo-76e59488b537220c9bb52ac28c898c4a492308a4.tar.bz2
gentoo-76e59488b537220c9bb52ac28c898c4a492308a4.zip
sys-cluster/singularity: Work around parallel install problem
install examples Package-Manager: portage-2.3.2 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sys-cluster/singularity')
-rw-r--r--sys-cluster/singularity/singularity-2.2.ebuild5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys-cluster/singularity/singularity-2.2.ebuild b/sys-cluster/singularity/singularity-2.2.ebuild
index 7fb0f7cbf178..011f063382e0 100644
--- a/sys-cluster/singularity/singularity-2.2.ebuild
+++ b/sys-cluster/singularity/singularity-2.2.ebuild
@@ -13,13 +13,16 @@ SRC_URI="https://github.com/${PN}ware/${PN}/releases/download/${PV}/${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
+IUSE="examples"
src_configure() {
econf --with-userns
}
src_install() {
+ MAKEOPTS+=" -j1"
default
prune_libtool_files
+ dodoc ChangeLog
+ use examples && dodoc -r examples
}