blob: 57f468d8fa0667dd93d0167de1028467d9f6399e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit rpm desktop
DESCRIPTION="Open Design Alliance DWG-DXF Converter"
HOMEPAGE="https://www.opendesign.com/guestfiles/oda_file_converter"
SRC_URI="https://download.opendesign.com/guestfiles/Demo/ODAFileConverter_QT5_lnxX64_8.3dll_${PV}.rpm"
KEYWORDS="-* ~amd64"
SLOT="0"
LICENSE="all-rights-reserved"
IUSE="bundled-libs"
RESTRICT="mirror bindist"
RDEPEND="
bundled-libs? ( media-libs/tiff-compat:4 )
"
S=${WORKDIR}
QA_PREBUILT="*"
src_prepare() {
eapply_user
if ! use bundled-libs ; then
MY_REMOVE_LIBS=(
libQt5
)
for name in ${MY_REMOVE_LIBS} ; do
find "${S}" -name ${name}'*' -delete
done
# remove qt plugins
rm -rfv "${S}"/usr/local/bin/ODAFileConverter_${PV}*/plugins
rm -rfv "${S}"/usr/local/bin/ODAFileConverter_${PV}*/qt.conf
fi
}
src_install() {
# we dont want automated desktop icons
rm -r "${S}"/etc
# move stuff from /usr/local/bin to /opt
dodir /opt
mv "${S}"/usr/local/bin/ODAFileConverter* "${D}"/opt/
# adjust path and move again
sed -e 's:/usr/local/bin/:/opt/:g' -i "${D}"/opt/ODAFileConverter
dodir /opt/bin
mv "${D}"/opt/ODAFileConverter "${D}"/opt/bin/ODAFileConverter
# the desktop files
domenu "${S}"/usr/share/applications/ODAFileConverter.desktop
# the icons, simpler by hand
dodir /usr/share/icons
mv "${S}"/usr/share/icons/* "${D}"/usr/share/icons/
}
|