Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/djview/
Date: Fri, 26 Jun 2020 10:12:46
Message-Id: 1593166352.4c1ab8b6e48c30bb0db6fb65c9633bd3b596ee4d.asturm@gentoo
1 commit: 4c1ab8b6e48c30bb0db6fb65c9633bd3b596ee4d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 26 10:03:01 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 26 10:12:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c1ab8b6
7
8 app-text/djview: EAPI-7 bump, drop broken IUSE=nsplugin support
9
10 It was broken already, but then modern browsers dropped npapi support anyway.
11
12 Package-Manager: Portage-2.3.103, Repoman-2.3.23
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 app-text/djview/djview-4.10.6-r2.ebuild | 86 +++++++++++++++++++++++++++++++++
16 1 file changed, 86 insertions(+)
17
18 diff --git a/app-text/djview/djview-4.10.6-r2.ebuild b/app-text/djview/djview-4.10.6-r2.ebuild
19 new file mode 100644
20 index 00000000000..89ea0c6b9f2
21 --- /dev/null
22 +++ b/app-text/djview/djview-4.10.6-r2.ebuild
23 @@ -0,0 +1,86 @@
24 +# Copyright 1999-2020 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +inherit autotools desktop flag-o-matic qmake-utils toolchain-funcs xdg-utils
30 +
31 +DESCRIPTION="Portable DjVu viewer using Qt"
32 +HOMEPAGE="http://djvu.sourceforge.net/djview4.html"
33 +SRC_URI="mirror://sourceforge/djvu/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="amd64 ~hppa ppc ppc64 x86"
38 +IUSE="debug"
39 +
40 +RDEPEND="
41 + >=app-text/djvu-3.5.22-r1
42 + dev-qt/qtcore:5
43 + dev-qt/qtgui:5
44 + dev-qt/qtnetwork:5
45 + dev-qt/qtopengl:5
46 + dev-qt/qtprintsupport:5
47 + dev-qt/qtwidgets:5"
48 +DEPEND="${RDEPEND}"
49 +BDEPEND="
50 + dev-qt/linguist-tools:5
51 + >=sys-devel/autoconf-2.67
52 + virtual/pkgconfig"
53 +
54 +DOCS=( README NEWS )
55 +
56 +PATCHES=( "${FILESDIR}/${P}-hidpi.patch" )
57 +
58 +src_prepare() {
59 + default
60 +
61 + # Force XEmbed instead of Xt-based mainloop (disable Xt autodep)
62 + sed -e 's:\(ac_xt=\)yes:\1no:' -i configure* || die
63 + sed 's/AC_CXX_OPTIMIZE/OPTS=;AC_SUBST(OPTS)/' -i configure.ac || die #263688
64 + rm aclocal.m4 config/{libtool.m4,install-sh,ltmain.sh,lt*.m4} || die
65 + AT_M4DIR="config" eautoreconf
66 +}
67 +
68 +src_configure() {
69 + # See config/acinclude.m4
70 + use debug || append-cppflags "-DNDEBUG"
71 +
72 + QTDIR=$(qt5_get_libdir)/qt5 \
73 + econf \
74 + --with-x \
75 + --disable-desktopfiles \
76 + --disable-nsdejavu
77 +}
78 +
79 +src_compile() {
80 + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
81 +}
82 +
83 +src_install() {
84 + emake DESTDIR="${D}" \
85 + plugindir=/usr/$(get_libdir)/${PLUGINS_DIR} \
86 + install
87 +
88 + einstalldocs
89 +
90 + insinto /usr/share/icons/hicolor/32x32/apps
91 + newins desktopfiles/prebuilt-hi32-djview4.png djvulibre-djview4.png
92 + insinto /usr/share/icons/hicolor/64x64/apps
93 + newins desktopfiles/prebuilt-hi64-djview4.png djvulibre-djview4.png
94 + insinto /usr/share/icons/hicolor/scalable/apps
95 + newins desktopfiles/djview.svg djvulibre-djview4.svg
96 + sed -e 's/Exec=djview4/Exec=djview/' \
97 + -i desktopfiles/djvulibre-djview4.desktop || die
98 + domenu desktopfiles/djvulibre-djview4.desktop
99 +}
100 +
101 +pkg_postinst() {
102 + xdg_desktop_database_update
103 + xdg_icon_cache_update
104 +}
105 +
106 +pkg_postrm() {
107 + xdg_desktop_database_update
108 + xdg_icon_cache_update
109 +}