summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2019-04-20 21:48:36 -0400
committerAaron Bauman <bman@gentoo.org>2019-04-20 21:48:36 -0400
commitbd4a014568869a257c62418d6547299589677d81 (patch)
treeef78dac8a19e1b86afb620307cd78edd1b6a0b04 /media-libs
parentsys-apps/lm_sensors: Removed old. (diff)
downloadgentoo-bd4a014568869a257c62418d6547299589677d81.tar.gz
gentoo-bd4a014568869a257c62418d6547299589677d81.tar.bz2
gentoo-bd4a014568869a257c62418d6547299589677d81.zip
media-libs/ming: drop vulnerable wrt bug #646770
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/ming/Manifest1
-rw-r--r--media-libs/ming/ming-0.4.8-r1.ebuild100
2 files changed, 0 insertions, 101 deletions
diff --git a/media-libs/ming/Manifest b/media-libs/ming/Manifest
index 6ab5f5bcf2df..fd30e2c4b34e 100644
--- a/media-libs/ming/Manifest
+++ b/media-libs/ming/Manifest
@@ -1,2 +1 @@
DIST ming-0.20181112.tar.gz 14889061 BLAKE2B a276f7aaf386f0233b9e92a95daf22b7fd192654275e99f70106b7abf2ec3963ae8d70a82addd2690e6c7038a0a52e41a27fbd5c9b38cc96d1ab617a3bfc522d SHA512 a4d3ed04c96ffc6d040ace3451f2d99a3fdda0726b45cee30913ca2dc8d9f24ff156a643eeb888d05eb199dd9f2caf4ce4f84fe40e1b95bf2f6c9e038155fdc3
-DIST ming-0_4_8.tar.gz 14908459 BLAKE2B df89beab98a7fbdcbefccad3a2fb013453405a7dba757131a61f06d9e40b7e1fe7beeadab42c113b12cff24b91cb1e76e9fabee0e1b4af58e2127eba13cc27bc SHA512 e395acde9119ad32f4cedd500bcceee70bdd563222a41dda899cc318d5e34eb580abc38ac39c6dec7821913a0a70d2f953fc81f52255b623e34f7c3aaafbc9c0
diff --git a/media-libs/ming/ming-0.4.8-r1.ebuild b/media-libs/ming/ming-0.4.8-r1.ebuild
deleted file mode 100644
index eba066b84485..000000000000
--- a/media-libs/ming/ming-0.4.8-r1.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PHP_EXT_NAME=ming
-PHP_EXT_OPTIONAL_USE=php
-AUTOTOOLS_AUTORECONF=yes
-GENTOO_DEPEND_ON_PERL=no
-inherit autotools distutils-r1 flag-o-matic multilib perl-module vcs-snapshot
-
-DESCRIPTION="An Open Source library for Flash movie generation"
-HOMEPAGE="http://ming.sourceforge.net/"
-SRC_URI="https://github.com/libming/libming/archive/${P//./_}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="+perl php +python static-libs"
-
-RDEPEND="perl? ( dev-lang/perl:= )
- python? ( ${PYTHON_DEPS} )
- media-libs/freetype:=
- media-libs/libpng:0=
- media-libs/giflib:=
- sys-libs/zlib:=
- !media-libs/libswf"
-DEPEND="${RDEPEND}
- sys-devel/flex
- virtual/pkgconfig
- virtual/yacc"
-PDEPEND="php? ( dev-php/ming-php )"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-S=${WORKDIR}/${P//./_}
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.4.8-CVE-2017-8782.patch
- "${FILESDIR}"/${PN}-0.4.8-freetype_pkgconfig.patch
-)
-
-# Tests only work when the package is tested on a system
-# which does not presently have any version of ming installed.
-RESTRICT="test"
-
-src_prepare() {
- default
-
- # Let's get rid of the TEXTRELS, link dynamic. Use gif.
- sed -i \
- -e 's/libming.a/libming.so/' \
- -e 's/lungif/lgif/' \
- perl_ext/Makefile.PL
-
- sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die
-
- eautoreconf
-}
-
-src_configure() {
- # build is sensitive to -O3 (bug #297437)
- replace-flags -O3 -O2
-
- # build python via distutils calls, disable here
- # php is done in dev-php/ming-php
- local myconf=(
- --disable-python
- --disable-php
- $(use_enable static-libs static)
- $(use_enable perl)
- )
- econf "${myconf[@]}"
-}
-
-run_distutils() {
- if use python; then
- pushd py_ext > /dev/null || die
- distutils-r1_"${@}"
- popd > /dev/null || die
- fi
-}
-
-src_compile() {
- # some parallel make issues on flex/bison
- emake -C src/actioncompiler -j1
- emake
-
- run_distutils ${FUNCNAME}
-}
-
-src_install() {
- run_distutils ${FUNCNAME}
-
- emake DESTDIR="${D}" INSTALLDIRS="vendor" install
- einstalldocs
-
- perl_delete_localpod
- find "${ED}"usr/lib* -name '*.la' -delete
-}