forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
djview-4.10.6-r1.ebuild
85 lines (68 loc) · 1.98 KB
/
djview-4.10.6-r1.ebuild
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools gnome2-utils flag-o-matic nsplugins qmake-utils toolchain-funcs versionator xdg-utils
DESCRIPTION="Portable DjVu viewer using Qt"
HOMEPAGE="http://djvu.sourceforge.net/djview4.html"
SRC_URI="mirror://sourceforge/djvu/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ppc ppc64 x86"
IUSE="debug nsplugin"
RDEPEND="
>=app-text/djvu-3.5.22-r1
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtopengl:5
dev-qt/qtprintsupport:5
dev-qt/qtwidgets:5"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.67
virtual/pkgconfig
nsplugin? ( dev-libs/glib:2 )"
DOCS=( README NEWS )
PATCHES=( "${FILESDIR}/${P}-hidpi.patch" )
src_prepare() {
default
# Force XEmbed instead of Xt-based mainloop (disable Xt autodep)
sed -e 's:\(ac_xt=\)yes:\1no:' -i configure* || die
sed 's/AC_CXX_OPTIMIZE/OPTS=;AC_SUBST(OPTS)/' -i configure.ac || die #263688
rm aclocal.m4 config/{libtool.m4,install-sh,ltmain.sh,lt*.m4}
AT_M4DIR="config" eautoreconf
}
src_configure() {
# See config/acinclude.m4
use debug || append-cppflags "-DNDEBUG"
QTDIR=$(qt5_get_libdir)/qt5 \
econf \
--with-x \
--disable-desktopfiles \
$(use_enable nsplugin nsdejavu)
}
src_compile() {
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
}
src_install() {
emake DESTDIR="${D}" \
plugindir=/usr/$(get_libdir)/${PLUGINS_DIR} \
install
einstalldocs
cd desktopfiles
insinto /usr/share/icons/hicolor/32x32/apps
newins prebuilt-hi32-djview4.png djvulibre-djview4.png
insinto /usr/share/icons/hicolor/64x64/apps
newins prebuilt-hi64-djview4.png djvulibre-djview4.png
insinto /usr/share/icons/hicolor/scalable/apps
newins djview.svg djvulibre-djview4.svg
sed -i -e 's/Exec=djview4/Exec=djview/' djvulibre-djview4.desktop
domenu djvulibre-djview4.desktop
}
pkg_postinst() {
xdg_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
xdg_desktop_database_update
gnome2_icon_cache_update
}