diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-30 16:44:00 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-30 17:39:45 +0200 |
commit | e42dd91b8903c560e55402c68274bbf527fdeb56 (patch) | |
tree | 4cdbe3a2278d4a06981bd2b6c015161ba7100375 /dev-libs/fddl | |
parent | sci-geosciences/laszip: drop 3.4.1, 3.4.1-r1 (diff) | |
download | gentoo-e42dd91b8903c560e55402c68274bbf527fdeb56.tar.gz gentoo-e42dd91b8903c560e55402c68274bbf527fdeb56.tar.bz2 gentoo-e42dd91b8903c560e55402c68274bbf527fdeb56.zip |
dev-libs/fddl: drop 20111124-r1
Bug: https://bugs.gentoo.org/938731
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/fddl')
-rw-r--r-- | dev-libs/fddl/fddl-20111124-r1.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-libs/fddl/fddl-20111124-r1.ebuild b/dev-libs/fddl/fddl-20111124-r1.ebuild deleted file mode 100644 index adf229a08483..000000000000 --- a/dev-libs/fddl/fddl-20111124-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake vcs-snapshot - -DESCRIPTION="Free Decision Diagram Library" -HOMEPAGE="https://itval.sourceforge.net/ https://github.com/atomopawn/FDDL" -SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -DOCS=( AUTHORS ChangeLog INSTALL RELEASE ) - -src_prepare() { - cmake_src_prepare - - # Remove references to files that were not shipped, - # prefer dynamic linking - sed -i \ - -e 's|unaryoperation.cpp||g' \ - -e 's|unaryoperation.h||g' \ - -e 's|binaryoperation.cpp||g' \ - -e 's|binaryoperation.h||g' \ - -e '/add_library/s/FDDL /FDDL SHARED /' \ - -e '/add_library/s/FDDL /FDDL SHARED /' \ - -e "/^install/s:DESTINATION lib:DESTINATION $(get_libdir):" \ - src/CMakeLists.txt || die - # Do not build tests that depend on above files - sed -i \ - {,tests/}CMakeLists.txt \ - -e '/test_unaryop/d' \ - -e '/test_binaryop/d' \ - || die -} |