# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 # this could be a multiple python package # but the way it is packaged makes it very time consuming. PYTHON_COMPAT=( python3_{10..12} ) inherit toolchain-funcs python-single-r1 MYP=${PN}.net-${PV} DESCRIPTION="Automated astrometric calibration programs and service" HOMEPAGE="http://astrometry.net" if [[ ${PV} = "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/dstndstn/astrometry.net.git" else SRC_URI="https://github.com/dstndstn/astrometry.net/releases/download/${PV}/${MYP}.tar.gz" KEYWORDS="~amd64 ~x86" fi S="${WORKDIR}/${MYP}" LICENSE="BSD GPL-2 GPL-3" SLOT="0" IUSE="examples +netpbm" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=" $(python_gen_cond_dep ' dev-python/astropy[${PYTHON_USEDEP}] dev-python/fitsio[${PYTHON_USEDEP}] /dev/null ./test || die "failed tests in ${d}" popd > /dev/null done } ap_make() { emake \ INSTALL_DIR="${ED}/usr" \ DATA_INSTALL_DIR="${ED}/usr/share/astrometry" \ LIB_INSTALL_DIR="${ED}/usr/$(get_libdir)" \ ETC_INSTALL_DIR="${ED}/etc" \ MAN1_INSTALL_DIR="${ED}/usr/share/man/man1" \ DOC_INSTALL_DIR="${ED}/usr/share/doc/${PF}" \ EXAMPLE_INSTALL_DIR="${ED}/usr/share/doc/${PF}/examples" \ PY_BASE_INSTALL_DIR="${D}/$(python_get_sitedir)/astrometry" \ PY_BASE_LINK_DIR="../$(python_get_sitedir | sed -e 's|/usr/||')/astrometry" \ FINAL_DIR="${EPREFIX}/usr" \ DATA_FINAL_DIR="${EPREFIX}/usr/share/astrometry" \ $@ } src_install() { ap_make install-core ap_make -C util install ap_make -C solver install-extra ap_make -C plot install-extra find "${ED}" -name '*.py[oc]' -delete || die python_optimize # remove duplicates and non installable libraries # cfitsio rm "${ED}"/usr/bin/{fitscopy,imcopy,listhead} || die # cfitsio utilities #rm "${ED}"/usr/bin/{fitsverify,imarith,imstat,liststruc,modhead,tablist,tabmerge} || die #rm "${ED}"/usr/$(get_libdir)/lib*.a || die #rm "${ED}"/usr/share/doc/${PF}/LICENSE || die if use examples; then docompress -x /usr/share/doc/${PF}/examples else rm -r "${ED}"/usr/share/doc/${PF}/examples || die fi }