diff options
author | 2020-12-17 20:36:09 -0600 | |
---|---|---|
committer | 2020-12-26 23:11:15 +0100 | |
commit | f5b3bafccd8614098028fbff39944f99b3e969d2 (patch) | |
tree | 23781d94cef445859e0f8058c3a0786f66c6406d /media-libs/cimg/cimg-2.9.3.ebuild | |
parent | dev-python/dogpile-cache: Remove old (diff) | |
download | gentoo-f5b3bafccd8614098028fbff39944f99b3e969d2.tar.gz gentoo-f5b3bafccd8614098028fbff39944f99b3e969d2.tar.bz2 gentoo-f5b3bafccd8614098028fbff39944f99b3e969d2.zip |
media-libs/cimg: security bump to 2.9.3
Bug: https://bugs.gentoo.org/650426
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: John Helmert III <jchelmert3@posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/18700
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/cimg/cimg-2.9.3.ebuild')
-rw-r--r-- | media-libs/cimg/cimg-2.9.3.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/media-libs/cimg/cimg-2.9.3.ebuild b/media-libs/cimg/cimg-2.9.3.ebuild new file mode 100644 index 000000000000..ab8c2c93c64b --- /dev/null +++ b/media-libs/cimg/cimg-2.9.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="C++ template image processing toolkit" +HOMEPAGE="https://cimg.eu/ https://github.com/dtschump/CImg" +SRC_URI="https://github.com/dtschump/CImg/archive/v.${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="CeCILL-2 CeCILL-C" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +S="${WORKDIR}/CImg-v.${PV}" + +src_install() { + doheader CImg.h + dodoc README.txt + + use doc && dodoc -r html + if use examples; then + dodoc -r examples + docompress -x "/usr/share/doc/${PF}/examples" + fi +} |