media-gfx/converseen - 0.15.2.2 (gentoo)

Search

Install

Install this version:

emerge -a =media-gfx/converseen-0.15.2.2

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =media-gfx/converseen-0.15.2.2

Or alternatively:

emerge --autounmask-write -a =media-gfx/converseen-0.15.2.2

Package Information

Description:
Batch image converter and resizer based on ImageMagick
Homepage:
https://converseen.fasterland.net/ https://github.com/Faster3ck/Converseen/
License:
GPL-3+

Ebuild Details

Version EAPI Keywords Slot
0.15.2.2 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 1999-2026 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="debug graphicsmagick heif"

RDEPEND="
	dev-qt/qtbase:6[gui,network,widgets]
	graphicsmagick? ( media-gfx/graphicsmagick:=[cxx,imagemagick,heif?] )
	!graphicsmagick? ( media-gfx/imagemagick:=[cxx,heif?] )
"
DEPEND="${RDEPEND}"
BDEPEND="dev-qt/qttools[linguist]"

PATCHES=(
	"${FILESDIR}/${PN}-0.12.2.4-appdata-path.patch"
	"${FILESDIR}/${P}-no-update.patch"
	"${FILESDIR}/${P}-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
}

USE Flags

Manage flags for this package: euse -i <flag> -p media-gfx/converseen | euse -E <flag> -p media-gfx/converseen | euse -D <flag> -p media-gfx/converseen

Global/Standard Flags

Inherited Eclasses

Dependencies

DEPEND

	dev-qt/qtbase:6[gui,network,widgets]
	graphicsmagick? ( media-gfx/graphicsmagick:=[cxx,imagemagick,heif?] )
	!graphicsmagick? ( media-gfx/imagemagick:=[cxx,heif?] )

RDEPEND

	dev-qt/qtbase:6[gui,network,widgets]
	graphicsmagick? ( media-gfx/graphicsmagick:=[cxx,imagemagick,heif?] )
	!graphicsmagick? ( media-gfx/imagemagick:=[cxx,heif?] )

BDEPEND

dev-qt/qttools[linguist]

Manifest for 0.15.2.2

Type File Size Source URLs
DIST converseen-0.15.2.2.tar.gz 979385 bytes https://github.com/Faster3ck/Converseen/archive/v0.15.2.2.tar.gz