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.
gentoo-overlay/media-gfx/cura/cura-4.2.1.ebuild

54 lines
1.4 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{5,6} )
inherit cmake-utils desktop python-single-r1 xdg
MY_PN=Cura
DESCRIPTION="A 3D model slicing application for 3D printing"
HOMEPAGE="https://github.com/Ultimaker/Cura"
SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+usb zeroconf"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
BDEPEND="sys-devel/gettext"
RDEPEND="${PYTHON_DEPS}
>=dev-python/uranium-${PV:0:3}[${PYTHON_USEDEP}]
>=media-gfx/curaengine-${PV:0:3}
>=media-gfx/fdm-materials-${PV:0:3}
>=dev-libs/libsavitar-${PV:0:3}:=[python,${PYTHON_USEDEP}]
>=dev-libs/libcharon-${PV:0:3}[${PYTHON_USEDEP}]
usb? ( dev-python/pyserial[${PYTHON_USEDEP}] )
zeroconf? ( dev-python/zeroconf[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}"
DOCS=( README.md )
PATCHES=( "${FILESDIR}/${PN}-4.2.1-fix-install-paths.patch" )
S="${WORKDIR}/${MY_PN}-${PV}"
src_prepare() {
sed -i "s/set(CURA_VERSION \"master\"/set(CURA_VERSION \"${PV}\"/" CMakeLists.txt || die
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-DPYTHON_SITE_PACKAGES_DIR="$(python_get_sitedir)"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
doicon icons/*.png
python_optimize "${D}${get_libdir}"
}