media-gfx/converseen: add 0.15.0.3

- Changelog: https://converseen.fasterland.net/changelog/

Signed-off-by: Philipp Rösner <rndxelement@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44046
Closes: https://github.com/gentoo/gentoo/pull/44046
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Philipp Rösner 2025-10-05 14:14:36 +02:00 committed by Sam James
parent 56cd68760a
commit 5bf27fc661
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 75 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST converseen-0.12.2.4.tar.gz 941270 BLAKE2B 4ac582a2dc3bbbabb48c1d12fe4ba4ed1d61b20e946645edab4eb6ac2d62cfa2df149b61c60842b36b55239694013661af4dd7c27a5195ee25f808d0a9b29605 SHA512 7d207207859f57037038b595935e3b0c5b202eda6a39e64226f6e898d5c3762077424a52f2ae6029263eae672607d05e30bf4ad2005ce15fd50348cca374413a
DIST converseen-0.15.0.3.tar.gz 969382 BLAKE2B 8e1c273b6bdfbd130cf9cb897e8c85ffe02ccde03e0ac3b31b527466fa5ec58e2bed4dbe3afdd98828b2ea9a0620daf0375cf66f86d7d1e63d536282e48d6c87 SHA512 e0094dc06f08f9cb3aec3ff79bd6019577fe49f531069f6d5c8eef263fba44fa784c0cadf4c42b2bb4c5c4dde3421b659ec0e26de61666a19c110be8e191da53

View File

@ -0,0 +1,74 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg-utils
DESCRIPTION="Batch image converter and resizer based on ImageMagick"
HOMEPAGE="https://converseen.fasterland.net/
https://github.com/Faster3ck/Converseen/"
SRC_URI="https://github.com/Faster3ck/Converseen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P^}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="graphicsmagick debug"
RDEPEND="
dev-qt/qtbase:6[gui,network,widgets]
graphicsmagick? ( media-gfx/graphicsmagick:=[cxx,imagemagick] )
!graphicsmagick? ( media-gfx/imagemagick:=[cxx] )
"
DEPEND="${RDEPEND}"
BDEPEND="dev-qt/qttools[linguist]"
PATCHES=(
"${FILESDIR}/${PN}-0.12.2.4-appdata-path.patch"
"${FILESDIR}/${PN}-0.9.9.0-no-update.patch"
"${FILESDIR}/${PN}-0.12.0.1-graphicsmagick-support.patch"
)
src_prepare() {
cmake_src_prepare
if use graphicsmagick; then
# Replace variables in CMakeLists.txt
sed -i -e "s/GENTOO_LIB/\/usr\/$(get_libdir)/g" \
-e "s/GENTOO_INCLUDE/\/usr\/include/g" \
"${S}/CMakeLists.txt" ||
die "Failed to sed graphicsmagick patch"
# Replace MagickCore in globals.cpp
sed -i -e "s/MagickCore/MagickLib/" "${S}/src/globals.cpp" ||
die "Failed to sed globals.cpp"
# GraphicsMagick++ doesn't implement a pingImages() function.
# Therefore, use readImages(). This may decrease performance,
# as pingImages() only reads image metadata.
sed -i -e "s/pingImages/readImages/" \
"${S}/src/Modules/multipageconverter.cpp" ||
die "Failed to replace pingImages() with readImages()"
fi
}
src_configure() {
local mycmakeargs=(-DUSE_QT6=yes)
cmake_src_configure
}
pkg_postinst() {
elog "Please note that due to security policy restrictions"
elog "on media-gfx/imagemagick the support for PS, PDF and"
elog "XPS files must be explicitly enabled by commenting out"
elog "the respective policies in /etc/ImageMagick-7/policy.xml."
elog "See https://wiki.gentoo.org/wiki/ImageMagick#Troubleshooting"
elog "for more information."
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}