diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-24 21:10:46 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-24 21:25:47 +0200 |
commit | 9960d5e01368d6db2a8ed9c8b2962bbb89804f2f (patch) | |
tree | 2a49607ed7a0f14031ae903574055eb502e8bb06 /sci-geosciences | |
parent | sci-geosciences/liblas: Fix CVE-2018-20540 (diff) | |
download | gentoo-9960d5e01368d6db2a8ed9c8b2962bbb89804f2f.tar.gz gentoo-9960d5e01368d6db2a8ed9c8b2962bbb89804f2f.tar.bz2 gentoo-9960d5e01368d6db2a8ed9c8b2962bbb89804f2f.zip |
sci-geosciences/liblas: Drop 1.8.1-r1
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-geosciences')
-rw-r--r-- | sci-geosciences/liblas/liblas-1.8.1-r1.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/sci-geosciences/liblas/liblas-1.8.1-r1.ebuild b/sci-geosciences/liblas/liblas-1.8.1-r1.ebuild deleted file mode 100644 index 8e0dbdea8572..000000000000 --- a/sci-geosciences/liblas/liblas-1.8.1-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -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" - -# tests known to fail due to LD_LIBRARY_PATH issue -RESTRICT="test" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" -IUSE="gdal" - -RDEPEND=" - dev-libs/boost:= - sci-geosciences/laszip - sci-libs/libgeotiff - gdal? ( sci-libs/gdal ) -" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/libLAS-${PV}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.8.0_remove-std-c++98.patch - "${FILESDIR}"/${P}-fix-overload-call.patch #bug 661654 -) - -src_prepare() { - cmake-utils_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=( - "-DWITH_GDAL=$(usex gdal)" - -DLIBLAS_LIB_SUBDIR=$(get_libdir) - ) - cmake-utils_src_configure -} |