diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-07-24 20:41:08 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-07-24 21:35:08 -0400 |
commit | 6be869a20f381fb84f2c32dd382547b4465a6a1a (patch) | |
tree | 250b9d42e8d819b142e5958ef4e836036147b757 /media-libs | |
parent | media-libs/libsdl2: drop vulnerable 2.0.12-r2 (diff) | |
download | gentoo-6be869a20f381fb84f2c32dd382547b4465a6a1a.tar.gz gentoo-6be869a20f381fb84f2c32dd382547b4465a6a1a.tar.bz2 gentoo-6be869a20f381fb84f2c32dd382547b4465a6a1a.zip |
media-libs/sdl-image: drop vulnerable 1.2.12-r2
Bug: https://bugs.gentoo.org/772194
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/sdl-image/Manifest | 1 | ||||
-rw-r--r-- | media-libs/sdl-image/sdl-image-1.2.12-r2.ebuild | 60 |
2 files changed, 0 insertions, 61 deletions
diff --git a/media-libs/sdl-image/Manifest b/media-libs/sdl-image/Manifest index 7aa11fed3b87..681f41c3d6ed 100644 --- a/media-libs/sdl-image/Manifest +++ b/media-libs/sdl-image/Manifest @@ -1,2 +1 @@ -DIST SDL_image-1.2.12.tar.gz 2231074 BLAKE2B 0d63e0b2207d1d347ec882e610eb37a625811febc215f089eb00dddec92b1a9fe026d2ab7823677c46e595585f3b5e176c35f9ac1f9ec2debf430ecc3ea950a6 SHA512 0e71b280abc2a7f15755e4480a3c1b52d41f9f8b0c9216a6f5bd9fc0e939456fb5d6c10419e1d1904785783f9a1891ead278c03e88b0466fecc6871c3ca40136 DIST SDL_image-1.2.12_p20210314.tar.gz 10890897 BLAKE2B ddc3e0a49e4ce8fc3c46c5dabe277f9bd2db81f43880aadc8fbd3b6fa09254669fdac90ee4c3c7b92d5c7ec97747944c3953ea2dca065e646416391730cb22dd SHA512 f087472593cbaa9e65c5d643d7801e2ff5e49bee66502d8c094ea18bcd5f66e6da153d39bff7bc81ed20556c909fc4cce279275ff55ee00aebf07d39c27fd543 diff --git a/media-libs/sdl-image/sdl-image-1.2.12-r2.ebuild b/media-libs/sdl-image/sdl-image-1.2.12-r2.ebuild deleted file mode 100644 index f7919bd482e6..000000000000 --- a/media-libs/sdl-image/sdl-image-1.2.12-r2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit multilib-minimal - -MY_P="${P/sdl-/SDL_}" -DESCRIPTION="image file loading library" -HOMEPAGE="http://www.libsdl.org/projects/SDL_image/" -SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="gif jpeg png static-libs tiff webp" - -RDEPEND=" - >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] - >=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}] - png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] ) - jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) - tiff? ( >=media-libs/tiff-3.9.7-r1:0[${MULTILIB_USEDEP}] ) - webp? ( >=media-libs/libwebp-0.3.0:=[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - --disable-jpg-shared \ - --disable-png-shared \ - --disable-tif-shared \ - --disable-webp-shared \ - $(use_enable static-libs static) \ - $(use_enable gif) \ - $(use_enable jpeg jpg) \ - $(use_enable tiff tif) \ - $(use_enable png) \ - $(use_enable webp) \ - --enable-bmp \ - --enable-lbm \ - --enable-pcx \ - --enable-pnm \ - --enable-tga \ - --enable-xcf \ - --enable-xpm \ - --enable-xv -} - -multilib_src_install() { - emake DESTDIR="${D}" install - dobin .libs/showimage -} - -multilib_src_install_all() { - dodoc CHANGES README - if ! use static-libs; then - find "${ED}" -name '*.la' -delete || die - fi -} |