summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-12-31 10:51:33 +0100
committerConrad Kostecki <conikost@gentoo.org>2025-01-02 01:10:06 +0100
commitf151a2bb1a0b8bb10ebf9a14f85085553a448097 (patch)
treebf31f0b6079fcf45963b9ad616461d66c39837a8 /media-libs/cimg
parentnet-libs/libhtp: add 0.5.49 (diff)
downloadgentoo-f151a2bb1a0b8bb10ebf9a14f85085553a448097.tar.gz
gentoo-f151a2bb1a0b8bb10ebf9a14f85085553a448097.tar.bz2
gentoo-f151a2bb1a0b8bb10ebf9a14f85085553a448097.zip
media-libs/cimg: add 3.4.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-libs/cimg')
-rw-r--r--media-libs/cimg/Manifest1
-rw-r--r--media-libs/cimg/cimg-3.4.3.ebuild25
2 files changed, 26 insertions, 0 deletions
diff --git a/media-libs/cimg/Manifest b/media-libs/cimg/Manifest
index f8c3a9a02786..f2cf512013c9 100644
--- a/media-libs/cimg/Manifest
+++ b/media-libs/cimg/Manifest
@@ -1,2 +1,3 @@
DIST cimg-3.2.4.tar.gz 12660194 BLAKE2B f30f24e388a066a6923a72be00055449862cc643bbe870e55198718e185d2fe9213cb8f19cb83c68fe6ff5ea4e93c2529f70c7256b2d022b304cb2b020f0db11 SHA512 71cbf5161a7778a14e105d8aa41bf0431303b6f4a0f4982d3788903b0505f5ae96be9515c67ea6a52e0e76fdcb25efe3cfd7684980545d078ff41e10dbb4fbb6
DIST cimg-3.4.1.tar.gz 12667815 BLAKE2B ad65938c75e28dbf9645e23972bd7d4e867c0ec16df686ce16b56cf4704869159ae3716d5d10675ac5965832341551612fbdb78ac6e5ca79157c948200ec031c SHA512 54357c177c1e25117778d444e0317a5a5f9dc9dd40ff2c280b6c05f846b2352c523ba6ab9eeea2e05094cc8fbbfe5a544a5f83eeda46394b3d87962b3b1e31d5
+DIST cimg-3.4.3.tar.gz 12669374 BLAKE2B a7899c21e99c19a9422b3774cfa8b81e0ffc60e853bf184e7e33eac3e5a3dc8d604a1235f3824f414ad64c3647c81a720cd722a2814c11ebc8fb1c5fafd0b750 SHA512 df6e45cef8dfb3eb121bd8bcb76c1b21e2dbad0ce5d651b1fa507a64667fbfad2b64817c5d072c1e34080bdae2dfce8cab6ee8410e261033f001c03967370fbc
diff --git a/media-libs/cimg/cimg-3.4.3.ebuild b/media-libs/cimg/cimg-3.4.3.ebuild
new file mode 100644
index 000000000000..81ead1e98430
--- /dev/null
+++ b/media-libs/cimg/cimg-3.4.3.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="C++ template image processing toolkit"
+HOMEPAGE="https://cimg.eu/ https://github.com/GreycLab/CImg"
+SRC_URI="https://github.com/GreycLab/CImg/archive/v.${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/CImg-v.${PV}"
+
+LICENSE="CeCILL-2 CeCILL-C"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples"
+
+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
+}