mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
- Add media-libs/libglvnd to RDEPEND for bundled Qt6 libGL.so.1. - Drop bundled libqtiff.so plugin, it linked libtiff.so.5 which is no longer in the tree (tinderbox QA0023). Closes: https://bugs.gentoo.org/975300 Signed-off-by: Huang Rui <vowstar@gmail.com>
68 lines
2.1 KiB
Bash
68 lines
2.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PV="$(ver_cut 1-2)"
|
|
|
|
inherit desktop unpacker xdg
|
|
|
|
DESCRIPTION="For converting between different versions of .dwg and .dxf"
|
|
HOMEPAGE="https://www.opendesign.com"
|
|
|
|
SRC_URI="https://www.opendesign.com/guestfiles/get?filename=ODAFileConverter_QT6_lnxX64_8.3dll_${MY_PV}.deb -> ${P}.deb"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="all-rights-reserved"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64"
|
|
|
|
RDEPEND="
|
|
dev-qt/qtbase:6[gui,widgets]
|
|
media-libs/libglvnd
|
|
x11-themes/hicolor-icon-theme
|
|
"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
BDEPEND="dev-util/patchelf"
|
|
|
|
QA_PREBUILT="*"
|
|
QA_DESKTOP_FILE="usr/share/applications/ODAFileConverter.*\\.desktop"
|
|
|
|
src_compile() {
|
|
# Fix RPATH to point to the FHS-compliant installation directory
|
|
patchelf --set-rpath \
|
|
"/opt/ODAFileConverter" \
|
|
"usr/bin/ODAFileConverter_${PV}/ODAFileConverter" \
|
|
|| die "Failed to fix insecure RPATH"
|
|
# Remove bundled qt.conf to use system Qt
|
|
rm -f "usr/bin/ODAFileConverter_${PV}/qt.conf" || die "Failed to remove qt.conf"
|
|
# Drop bundled libqtiff.so: it links against libtiff.so.5 which is no
|
|
# longer in the tree, and TIFF image support is unused by the converter.
|
|
rm -f "usr/bin/ODAFileConverter_${PV}/plugins/imageformats/libqtiff.so" \
|
|
|| die "Failed to remove bundled libqtiff.so"
|
|
}
|
|
|
|
src_install() {
|
|
# Install main application files to /opt (FHS-compliant for self-contained binary packages)
|
|
insinto /opt/ODAFileConverter
|
|
doins -r "usr/bin/ODAFileConverter_${PV}"/*
|
|
|
|
# Mark executables
|
|
fperms 0755 /opt/ODAFileConverter/ODAFileConverter
|
|
|
|
# Create wrapper script in /usr/bin
|
|
newbin "${FILESDIR}"/ODAFileConverter ODAFileConverter
|
|
|
|
# Create symlink for FreeCAD compatibility (auto-detects by "TeighaFileConverter" name)
|
|
dosym ODAFileConverter /usr/bin/TeighaFileConverter
|
|
|
|
# Install desktop file and icons
|
|
domenu usr/share/applications/*.desktop
|
|
doicon -s 16 usr/share/icons/hicolor/16x16/apps/ODAFileConverter.png
|
|
doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
|
|
doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
|
|
doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
|
|
}
|