From 807ff46f66eeeac735c53d7c000b5f07b248bcea Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Sun, 10 Nov 2013 15:16:42 +0100 Subject: [PATCH] added domodule calls so that stuff actually gets installed :-/ --- dev-python/matrix2latex/matrix2latex-0.1.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dev-python/matrix2latex/matrix2latex-0.1.ebuild b/dev-python/matrix2latex/matrix2latex-0.1.ebuild index 6d02359..170ea98 100644 --- a/dev-python/matrix2latex/matrix2latex-0.1.ebuild +++ b/dev-python/matrix2latex/matrix2latex-0.1.ebuild @@ -6,7 +6,7 @@ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) -inherit python-single-r1 toolchain-funcs +inherit python-single-r1 DESCRIPTION="A tool to create LaTeX tables from python lists and arrays." HOMEPAGE="https://code.google.com/p/matrix2latex/" @@ -27,3 +27,11 @@ src_unpack() { S="${WORKDIR}/${PN}Python" cd ${S} } + +src_install() { + python_optimize . + python_domodule "${S}"/matrix2latex.py + python_domodule "${S}"/fixEngineeringNotation.py + python_domodule "${S}"/error.py + python_domodule "${S}"/IOString.py +}