gentoo-ebuilds/media-gfx/converseen/converseen-0.15.0.3.ebuild
Philipp Rösner 5bf27fc661
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>
2025-10-18 16:23:52 +01:00

74 lines
2.1 KiB
Bash

# 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
}