diff options
author | 2014-04-25 05:59:49 +0000 | |
---|---|---|
committer | 2014-04-25 05:59:49 +0000 | |
commit | dbe33bd9fd1412d081d508c06648a1e339993408 (patch) | |
tree | 9f6cfeadc9e729d16788639b34f30a9cf05522e7 /games-util | |
parent | Remove old. (diff) | |
download | gentoo-2-dbe33bd9fd1412d081d508c06648a1e339993408.tar.gz gentoo-2-dbe33bd9fd1412d081d508c06648a1e339993408.tar.bz2 gentoo-2-dbe33bd9fd1412d081d508c06648a1e339993408.zip |
version bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/nml/ChangeLog | 9 | ||||
-rw-r--r-- | games-util/nml/nml-0.3.0.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/games-util/nml/ChangeLog b/games-util/nml/ChangeLog index da65bfb69a29..e4114863c9ba 100644 --- a/games-util/nml/ChangeLog +++ b/games-util/nml/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-util/nml -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/nml/ChangeLog,v 1.22 2013/12/13 15:27:00 hasufell Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/nml/ChangeLog,v 1.23 2014/04/25 05:59:49 mr_bones_ Exp $ + +*nml-0.3.0 (25 Apr 2014) + + 25 Apr 2014; Michael Sterrett <mr_bones_@gentoo.org> +nml-0.3.0.ebuild: + version bump 13 Dec 2013; Julian Ospald <hasufell@gentoo.org> nml-0.2.4-r2.ebuild: add PYTHON_USEDEP to dev-python/ply wrt #494156 diff --git a/games-util/nml/nml-0.3.0.ebuild b/games-util/nml/nml-0.3.0.ebuild new file mode 100644 index 000000000000..3069b039c1d4 --- /dev/null +++ b/games-util/nml/nml-0.3.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.3.0.ebuild,v 1.1 2014/04/25 05:59:48 mr_bones_ Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_6 python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Compiler of NML files into grf/nfo files" +HOMEPAGE="http://dev.openttdcoop.org/projects/nml" +SRC_URI="http://bundles.openttdcoop.org/nml/releases/${PV}/${P}-src.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +RDEPEND="dev-python/pillow[zlib,${PYTHON_USEDEP}] + dev-python/ply[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${P}-src + +DOCS=( docs/{changelog,readme}.txt ) + +src_install() { + distutils-r1_src_install + doman docs/nmlc.1 +} |