You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
712 B
34 lines
712 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
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() {
|
|
eautoreconf
|
|
}
|