blob: 317b4ccf2cc1f79e5cf0c60e84ee77a6568fcbe1 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/fbreader/fbreader-0.99.1.ebuild,v 1.1 2012/09/04 11:18:36 alexxy Exp $
EAPI=4
inherit eutils multilib
DESCRIPTION="E-Book Reader. Supports many e-book formats."
HOMEPAGE="http://www.fbreader.org/"
SRC_URI="http://www.fbreader.org/files/desktop/${PN}-sources-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug gtk +qt4"
DEPEND="dev-libs/expat
dev-libs/liblinebreak
net-misc/curl
dev-libs/fribidi
app-arch/bzip2
dev-db/sqlite
qt4? ( x11-libs/qt-gui:4 x11-libs/qt-core:4 )
gtk? ( >=x11-libs/gtk+-2.4:2 )
"
RDEPEND="${DEPEND}"
REQUIRED_USE=" ^^ ( qt4 gtk )"
src_prepare() {
# Still use linebreak instead of new unibreak
sed -e "s:-lunibreak:-llinebreak:" \
-i makefiles/config.mk zlibrary/text/Makefile || die "fixing libunibreak failed"
# Let portage decide about the compiler
sed -e "/^CC = /d" \
-i makefiles/arch/desktop.mk || die "removing CC line failed"
#Tidy up the .desktop file
sed -e "s:^Name=E-book reader:Name=FBReader:" \
-e "s:^Name\[ru\]=.*$:Name\[ru\]=FBReader:" \
-e "s:^Icon=FBReader.png:Icon=FBReader:" \
-i fbreader/desktop/desktop || die "tidying desktop failed"
sed -e "/^ LDFLAGS += -s$/ d" \
-i makefiles/config.mk || die "sed failed"
sed -e "/^LDFLAGS =$/ d" \
-i makefiles/arch/desktop.mk || die "sed failed"
echo "TARGET_ARCH = desktop" > makefiles/target.mk
echo "LIBDIR = /usr/$(get_libdir)" >> makefiles/target.mk
if use qt4; then
# qt4
echo "UI_TYPE = qt4" >> makefiles/target.mk
sed -e 's:CFLAGS =:CFLAGS = $(shell pkg-config --cflags glib-2.0):' \
-e 's:UILIBS = -lQtCore:UILIBS = $(shell pkg-config --libs QtCore) -lQtCore:' \
-e 's:MOC = moc-qt4:MOC = /usr/bin/moc:' \
-i makefiles/arch/desktop.mk || die "updating desktop.mk failed"
elif use gtk; then
# gtk
echo "UI_TYPE = gtk" >> makefiles/target.mk
fi
if use debug; then
echo "TARGET_STATUS = debug" >> makefiles/target.mk
else
echo "TARGET_STATUS = release" >> makefiles/target.mk
fi
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dosym /usr/bin/FBReader /usr/bin/fbreader
}
|