blob: 5ab017db26e537a2d7ce79358cfe8a913d6e8867 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils toolchain-funcs xdg
DESCRIPTION="E-Book Reader. Supports many e-book formats"
HOMEPAGE="https://www.fbreader.org/"
SRC_URI="https://www.fbreader.org/files/desktop/${PN}-sources-${PV}.tgz
https://dev.gentoo.org/~juippis/distfiles/tmp/fbreader-0.99.4-combined.patch"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc x86"
IUSE="debug"
RDEPEND="
app-arch/bzip2
dev-db/sqlite
dev-libs/expat
dev-libs/fribidi
dev-libs/libunibreak:=
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5[ssl]
dev-qt/qtwidgets:5
net-misc/curl
sys-libs/zlib
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
"
# bugs #452636, #515698, #516794, #437262, #592588
PATCHES=( "${DISTDIR}"/${P}-combined.patch )
src_prepare() {
default
# Let portage decide about the compiler
sed -e "/^CC = /d" \
-i makefiles/arch/desktop.mk || die "removing CC line failed"
# let portage strip the binary
sed -e '/@strip/d' \
-i fbreader/desktop/Makefile || die
# Respect *FLAGS
sed -e "s/^CFLAGS = -pipe/CFLAGS +=/" \
-i makefiles/arch/desktop.mk || die "CFLAGS sed failed"
sed -e "/^ CFLAGS +=/d" \
-i makefiles/config.mk || die "CFLAGS sed failed"
sed -e "/^ LDFLAGS += -s$/d" \
-i makefiles/config.mk || die "LDFLAGS sed failed"
sed -e "/^LDFLAGS =$/d" \
-i makefiles/arch/desktop.mk || die "LDFLAGS sed failed"
# Qt5 moc
sed -e "s:MOC = moc-qt4:MOC = $(qt5_get_bindir)/moc:" \
-i makefiles/arch/desktop.mk || die "updating desktop.mk failed"
echo "TARGET_ARCH = desktop" > makefiles/target.mk || die
echo "LIBDIR = /usr/$(get_libdir)" >> makefiles/target.mk || die
echo "UI_TYPE = qt4" >> makefiles/target.mk || die
if use debug; then
echo "TARGET_STATUS = debug" >> makefiles/target.mk || die
else
echo "TARGET_STATUS = release" >> makefiles/target.mk || die
fi
# bug #437262
tc-ld-disable-gold
}
src_compile() {
# bug #484516
emake -j1
}
src_install() {
default
dosym FBReader /usr/bin/fbreader
}
|