diff options
author | Slawek Lis <slis@gentoo.org> | 2013-10-11 05:10:31 +0000 |
---|---|---|
committer | Slawek Lis <slis@gentoo.org> | 2013-10-11 05:10:31 +0000 |
commit | 239121b9aff20aee0108585e914361dc37e65b28 (patch) | |
tree | b919f02fa0131dd171affce1c52b8154487c710b /sci-misc | |
parent | giflib-quantizebuffer patch for bug #486320 (diff) | |
download | gentoo-2-239121b9aff20aee0108585e914361dc37e65b28.tar.gz gentoo-2-239121b9aff20aee0108585e914361dc37e65b28.tar.bz2 gentoo-2-239121b9aff20aee0108585e914361dc37e65b28.zip |
version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x55265D89)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/repsnapper/ChangeLog | 8 | ||||
-rw-r--r-- | sci-misc/repsnapper/files/typo.patch | 11 | ||||
-rw-r--r-- | sci-misc/repsnapper/repsnapper-2.3.0.ebuild | 35 |
3 files changed, 53 insertions, 1 deletions
diff --git a/sci-misc/repsnapper/ChangeLog b/sci-misc/repsnapper/ChangeLog index bccd50279dc0..36c45bd5bead 100644 --- a/sci-misc/repsnapper/ChangeLog +++ b/sci-misc/repsnapper/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-misc/repsnapper # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/repsnapper/ChangeLog,v 1.4 2013/08/28 05:37:56 slis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/repsnapper/ChangeLog,v 1.5 2013/10/11 05:10:31 slis Exp $ + +*repsnapper-2.3.0 (11 Oct 2013) + + 11 Oct 2013; Sławek Lis <slis@gentoo.org> +files/typo.patch, + +repsnapper-2.3.0.ebuild: + version bump *repsnapper-2.2.0b_p3 (28 Aug 2013) diff --git a/sci-misc/repsnapper/files/typo.patch b/sci-misc/repsnapper/files/typo.patch new file mode 100644 index 000000000000..9e74523e38f5 --- /dev/null +++ b/sci-misc/repsnapper/files/typo.patch @@ -0,0 +1,11 @@ +--- src/slicer/printlines.h.orig 2013-10-10 07:38:38.199031372 +0200 ++++ src/slicer/printlines.h 2013-10-10 07:38:43.652364764 +0200 +@@ -98,7 +98,7 @@ + + int getCommands(Vector3d &lastpos, vector<Command> &commands, + const double &minspeed, const double &movespeed, +- const double &minZspeed, const double &minZspeed, ++ const double &minZspeed, const double &maxZspeed, + const double &maxAOspeed, bool useTCommand) const; + + // // not used diff --git a/sci-misc/repsnapper/repsnapper-2.3.0.ebuild b/sci-misc/repsnapper/repsnapper-2.3.0.ebuild new file mode 100644 index 000000000000..178f1ea5a3da --- /dev/null +++ b/sci-misc/repsnapper/repsnapper-2.3.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/repsnapper/repsnapper-2.3.0.ebuild,v 1.1 2013/10/11 05:10:31 slis Exp $ + +EAPI=5 + +inherit autotools versionator + +MY_PV="$(get_version_component_range 1-4)$(get_version_component_range 5)" +MY_PV=${MY_PV/p/} + +DESCRIPTION="Host software for controlling the RepRap open source 3D printer" +HOMEPAGE="https://github.com/timschmidt/repsnapper" +SRC_URI="https://github.com/timschmidt/${PN}/archive/${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz" + +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + >=dev-cpp/gtkglextmm-1.2 + dev-cpp/gtkmm:2.4 + dev-cpp/libxmlpp + dev-libs/libzip + virtual/opengl +" +RDEPEND=${DEPEND} + +src_prepare() { + epatch "${FILESDIR}/typo.patch" + eautoreconf +} |