diff options
author | Pacho Ramos <pacho@gentoo.org> | 2024-07-22 21:05:54 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2024-07-22 21:14:11 +0200 |
commit | 20e87cf40eda09ac53ee097eb79ae1db1a16ec34 (patch) | |
tree | f0a582f4a5d737e0d9364a9733cc2a341c80d47d /sci-libs | |
parent | dev-games/openscenegraph-openmw: drop 3.6_p20221115 (diff) | |
download | gentoo-20e87cf40eda09ac53ee097eb79ae1db1a16ec34.tar.gz gentoo-20e87cf40eda09ac53ee097eb79ae1db1a16ec34.tar.bz2 gentoo-20e87cf40eda09ac53ee097eb79ae1db1a16ec34.zip |
sci-libs/xylib: drop 1.6
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/xylib/xylib-1.6.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/sci-libs/xylib/xylib-1.6.ebuild b/sci-libs/xylib/xylib-1.6.ebuild deleted file mode 100644 index 49e226d26949..000000000000 --- a/sci-libs/xylib/xylib-1.6.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER=3.0-gtk3 - -inherit wxwidgets - -DESCRIPTION="Experimental x-y data reading library" -HOMEPAGE="https://github.com/wojdyr/xylib" -SRC_URI="https://github.com/wojdyr/xylib/releases/download/v${PV}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="bzip2 gui zlib" - -RDEPEND=" - bzip2? ( app-arch/bzip2 ) - gui? ( x11-libs/wxGTK:${WX_GTK_VER} ) - zlib? ( sys-libs/zlib )" -DEPEND=" - ${RDEPEND} - dev-libs/boost" - -src_configure() { - use gui && setup-wxwidgets - - econf \ - --disable-static \ - $(use_with bzip2 bzlib) \ - $(use_with gui) \ - $(use_with zlib) -} - -src_install() { - default - - # no static archives - find "${ED}" -name '*.la' -delete || die -} |