diff options
author | Sebastian Pipping <sping@gentoo.org> | 2023-11-05 13:41:38 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2023-11-05 13:41:38 +0100 |
commit | 6bd8390a72c5b210b5c488f7b95a872952c47a71 (patch) | |
tree | 5f249aae30c654c5c7b67f167f709c15e59ed257 /media-gfx | |
parent | dev-python/zeroconf: Remove old (diff) | |
download | gentoo-6bd8390a72c5b210b5c488f7b95a872952c47a71.tar.gz gentoo-6bd8390a72c5b210b5c488f7b95a872952c47a71.tar.bz2 gentoo-6bd8390a72c5b210b5c488f7b95a872952c47a71.zip |
media-gfx/optipng: Drop vulnerable
Bug: https://bugs.gentoo.org/915342
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/optipng/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/optipng/optipng-0.7.7-r1.ebuild | 59 |
2 files changed, 0 insertions, 60 deletions
diff --git a/media-gfx/optipng/Manifest b/media-gfx/optipng/Manifest index b30754260e30..f279da8e6a6e 100644 --- a/media-gfx/optipng/Manifest +++ b/media-gfx/optipng/Manifest @@ -1,2 +1 @@ -DIST optipng-0.7.7.tar.gz 2329555 BLAKE2B af3e1c806522282ccbf9325c0b49f61a30d24b8e2db2dd8ec316a312d0dea595cbb6e8b5b38ef5ea90f1efe14244b81f85f88e11e7334fdd4b91b43b6dae8e7d SHA512 c33b7650143ab39944d2c066e07e10273c37024c5bfe7c00475bfb513af96afa081ff388164845d426d3bce624c0282dee574fa150e963f18d3683d821030280 DIST optipng-0.7.8.tar.gz 3294014 BLAKE2B b6d40335adadd1cef2b200c913d09eda67970910945904b26befb8de6f070eee99baa42b1ef4cfd6ad37759a528b7ad39a00fe5ea1b5e268c2d8385041d9f129 SHA512 def47bb2898d9409773df55a99fec84af2a26b58192127ac4624b2ff504762bc4735b5b945e788174eac695cc81be1b062088b42683b9c889dc42f94431210c3 diff --git a/media-gfx/optipng/optipng-0.7.7-r1.ebuild b/media-gfx/optipng/optipng-0.7.7-r1.ebuild deleted file mode 100644 index 8b862a7c0a72..000000000000 --- a/media-gfx/optipng/optipng-0.7.7-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Compress PNG files without affecting image quality" -HOMEPAGE="http://optipng.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" - -RDEPEND="sys-libs/zlib - media-libs/libpng:0=" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS.txt README.txt ) - -src_prepare() { - rm -R src/{libpng,zlib} || die - find . -type d -name build -exec rm -R {} + || die - - # next release is almost a complete rewrite, so plug this compilation - # problem in anticipation of the much (c)leaner(?) rewrite - sed -i \ - -e 's/^#if defined AT_FDCWD/#if (defined(AT_FDCWD) \&\& !(defined(__SVR4) \&\& defined(__sun)))/' \ - src/optipng/ioutil.c || die - - tc-export CC AR RANLIB - export LD="$(tc-getCC)" - - eapply_user -} - -src_configure() { - ./configure \ - -with-system-libpng \ - -with-system-zlib \ - || die "configure failed" -} - -src_compile() { - emake -C src/optipng -} - -src_install() { - einstalldocs - - dodoc doc/*.txt - docinto html - dodoc doc/*.html - doman src/${PN}/man/${PN}.1 - - dobin src/${PN}/${PN} -} |