summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-01-10 16:02:53 +0000
committerJustin Lecher <jlec@gentoo.org>2012-01-10 16:02:53 +0000
commit218f83854fd97feb03f69509613531edc3bb9e2e (patch)
tree3062ca56200ed694aada8d1b5d2815df6845578e /dev-python/simpy
parentclean unused license (diff)
downloadgentoo-2-218f83854fd97feb03f69509613531edc3bb9e2e.tar.gz
gentoo-2-218f83854fd97feb03f69509613531edc3bb9e2e.tar.bz2
gentoo-2-218f83854fd97feb03f69509613531edc3bb9e2e.zip
Drop USE=doc, because doc building fails, #398165
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/simpy')
-rw-r--r--dev-python/simpy/ChangeLog5
-rw-r--r--dev-python/simpy/simpy-2.3.ebuild17
2 files changed, 15 insertions, 7 deletions
diff --git a/dev-python/simpy/ChangeLog b/dev-python/simpy/ChangeLog
index b41617c4acf2..ad6f672d1f47 100644
--- a/dev-python/simpy/ChangeLog
+++ b/dev-python/simpy/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/simpy
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/ChangeLog,v 1.1 2012/01/06 16:04:38 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/ChangeLog,v 1.2 2012/01/10 16:02:53 jlec Exp $
+
+ 10 Jan 2012; Justin Lecher <jlec@gentoo.org> simpy-2.3.ebuild:
+ Drop USE=doc, because doc building fails, #398165
*simpy-2.3 (06 Jan 2012)
diff --git a/dev-python/simpy/simpy-2.3.ebuild b/dev-python/simpy/simpy-2.3.ebuild
index 0106aa0dc46a..dcc401fcdc1e 100644
--- a/dev-python/simpy/simpy-2.3.ebuild
+++ b/dev-python/simpy/simpy-2.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild,v 1.2 2012/01/07 00:17:17 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild,v 1.3 2012/01/10 16:02:53 jlec Exp $
EAPI=4
@@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="LGPL-2.1"
-IUSE="doc test"
+IUSE="test"
RDEPEND=""
DEPEND="test? ( dev-python/pytest )"
@@ -39,8 +39,13 @@ src_test() {
src_install() {
distutils_src_install
- if use doc; then
- dohtml -r SimPyDocs
- dodoc SimPyModels/*
- fi
+## fails with current sphinx
+# cd docs
+# emake man && doman build/man/*
+#
+# if use doc; then
+# emake dirhtml singlehtml && dohtml -r build/html/* build/singlehtml/*
+# emake text changes && dodoc -r build/{text,changes}/*
+# emake latexpdf && dodoc -r build/latex*/*
+# fi
}