diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-08 20:57:09 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-08 20:57:09 +0100 |
commit | 803867c67fd65907ce18865eb1a3c9292e65f5f1 (patch) | |
tree | 03accb4b75fab956e73d27e55f81a642740c0852 /sci-geosciences | |
parent | kde-apps/spectacle: Restrict unreliable tests (diff) | |
download | gentoo-803867c67fd65907ce18865eb1a3c9292e65f5f1.tar.gz gentoo-803867c67fd65907ce18865eb1a3c9292e65f5f1.tar.bz2 gentoo-803867c67fd65907ce18865eb1a3c9292e65f5f1.zip |
sci-geosciences/liblas: Drop 1.8.1-r2
Closes: https://bugs.gentoo.org/698846
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-geosciences')
-rw-r--r-- | sci-geosciences/liblas/liblas-1.8.1-r2.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/sci-geosciences/liblas/liblas-1.8.1-r2.ebuild b/sci-geosciences/liblas/liblas-1.8.1-r2.ebuild deleted file mode 100644 index 949af96ab07b..000000000000 --- a/sci-geosciences/liblas/liblas-1.8.1-r2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="C/C++ library for manipulating the LAS LiDAR format common in GIS" -HOMEPAGE="https://github.com/libLAS/libLAS/" -SRC_URI="https://github.com/libLAS/libLAS/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="amd64 ~ia64 ppc ppc64 x86" -IUSE="gdal" - -DEPEND=" - dev-libs/boost:= - sci-geosciences/laszip - sci-libs/libgeotiff:= - gdal? ( sci-libs/gdal:= ) -" -RDEPEND="${DEPEND}" - -# tests known to fail due to LD_LIBRARY_PATH issue -RESTRICT="test" - -S="${WORKDIR}/libLAS-${PV}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.8.0_remove-std-c++98.patch - "${FILESDIR}"/${P}-fix-overload-call.patch # bug 661654 - "${FILESDIR}"/${P}-CVE-2018-20540.patch # bug 678482 -) - -src_prepare() { - cmake_src_prepare - - # add missing linkage - sed -e 's:${LAS2COL} ${LIBLAS_C_LIB_NAME}:& ${CMAKE_THREAD_LIBS_INIT}:' \ - -i "${S}/apps/CMakeLists.txt" || die -} - -src_configure() { - local mycmakeargs=( - -DLIBLAS_LIB_SUBDIR=$(get_libdir) - -DWITH_GDAL=$(usex gdal) - ) - cmake_src_configure -} |