diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-01-27 15:28:29 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-01-27 15:28:29 +0000 |
commit | caefc113af9dd59d3ddd969d183a13a0698803f0 (patch) | |
tree | 7e8d68aea9eeac57002cb0b548a0e6ee2c3d92dd | |
parent | Curl patch merged to master. (diff) | |
download | gentoo-2-caefc113af9dd59d3ddd969d183a13a0698803f0.tar.gz gentoo-2-caefc113af9dd59d3ddd969d183a13a0698803f0.tar.bz2 gentoo-2-caefc113af9dd59d3ddd969d183a13a0698803f0.zip |
sci-libs/vtkdata: Version Bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
-rw-r--r-- | sci-libs/vtkdata/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/vtkdata/vtkdata-6.1.0.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/sci-libs/vtkdata/ChangeLog b/sci-libs/vtkdata/ChangeLog index 2d22478a690a..fcc7cae3a023 100644 --- a/sci-libs/vtkdata/ChangeLog +++ b/sci-libs/vtkdata/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/vtkdata # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtkdata/ChangeLog,v 1.2 2014/01/02 15:12:10 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtkdata/ChangeLog,v 1.3 2014/01/27 15:28:29 jlec Exp $ + +*vtkdata-6.1.0 (27 Jan 2014) + + 27 Jan 2014; Justin Lecher <jlec@gentoo.org> +vtkdata-6.1.0.ebuild: + Version Bump 02 Jan 2014; Justin Lecher <jlec@gentoo.org> vtkdata-6.0.0.ebuild: Fix installation directory diff --git a/sci-libs/vtkdata/vtkdata-6.1.0.ebuild b/sci-libs/vtkdata/vtkdata-6.1.0.ebuild new file mode 100644 index 000000000000..7f2a5145f32a --- /dev/null +++ b/sci-libs/vtkdata/vtkdata-6.1.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtkdata/vtkdata-6.1.0.ebuild,v 1.1 2014/01/27 15:28:29 jlec Exp $ + +EAPI=5 + +inherit versionator + +DESCRIPTION="Example data file for VTK" +HOMEPAGE="http://www.vtk.org" +SRC_URI="http://www.vtk.org/files/release/$(get_version_component_range 1-2)/VTKData-${PV}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RESTRICT="binchecks strip" + +RDEPEND="!<sci-libs/vtk-6" + +S="${WORKDIR}"/VTKDATA${PV} + +src_install() { + insinto /usr/share/vtk/data + doins -r .ExternalData +} |