diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-04-18 15:26:14 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-04-18 15:26:14 +0000 |
commit | 25fd01f421022a08b474fecf6f761619eb0f2146 (patch) | |
tree | e072f8a4ccbeabd8663437e9e8ee1b8fb112f050 /games-util | |
parent | Add latest aspell-pl. Thanks to Sławomir Nizio for the ebuild. (diff) | |
download | gentoo-2-25fd01f421022a08b474fecf6f761619eb0f2146.tar.gz gentoo-2-25fd01f421022a08b474fecf6f761619eb0f2146.tar.bz2 gentoo-2-25fd01f421022a08b474fecf6f761619eb0f2146.zip |
Aparently does not build with py3. Fixes bug#412527. Thanks to hendrik<at>consetetur.de for the patch
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/nml/ChangeLog | 6 | ||||
-rw-r--r-- | games-util/nml/nml-0.2.3.ebuild | 14 |
2 files changed, 17 insertions, 3 deletions
diff --git a/games-util/nml/ChangeLog b/games-util/nml/ChangeLog index 28a1c8b36cbe..365c7c18db4f 100644 --- a/games-util/nml/ChangeLog +++ b/games-util/nml/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-util/nml # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/nml/ChangeLog,v 1.1 2012/04/17 12:30:22 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/nml/ChangeLog,v 1.2 2012/04/18 15:26:14 scarabeus Exp $ + + 18 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> nml-0.2.3.ebuild: + Aparently does not build with py3. Fixes bug#412527. Thanks to + hendrik<at>consetetur.de for the patch *nml-0.2.3 (17 Apr 2012) diff --git a/games-util/nml/nml-0.2.3.ebuild b/games-util/nml/nml-0.2.3.ebuild index 95d68b912591..7e89ed41d0da 100644 --- a/games-util/nml/nml-0.2.3.ebuild +++ b/games-util/nml/nml-0.2.3.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.2.3.ebuild,v 1.1 2012/04/17 12:30:22 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.2.3.ebuild,v 1.2 2012/04/18 15:26:14 scarabeus Exp $ EAPI=4 -PYTHON_DEPEND="*" +PYTHON_DEPEND="2:2.5" inherit distutils @@ -23,3 +23,13 @@ RDEPEND=" " DEPEND="${RDEPEND}" +DOCS="docs/changelog.txt docs/readme.txt" + +pkg_setup() { + python_set_active_version 2 +} + +src_install() { + distutils_src_install + doman docs/nmlc.1 +} |