blob: 5aaa26cca46d8de463aaa990cdb09d0791cc3e29 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.16.ebuild,v 1.14 2006/06/24 05:27:42 cardoe Exp $
inherit nsplugins flag-o-matic fdo-mime eutils multilib toolchain-funcs
MY_P="${PN}libre-${PV}"
DESCRIPTION="DjVu viewers, encoders and utilities."
HOMEPAGE="http://djvu.sourceforge.net"
SRC_URI="mirror://sourceforge/djvu/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ia64 ppc ppc64 sparc x86"
IUSE="xml qt3 jpeg tiff debug threads nls nsplugin kde"
DEPEND="jpeg? ( >=media-libs/jpeg-6b-r2 )
tiff? ( media-libs/tiff )
qt3? ( <x11-libs/qt-4 )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
# gcc 4 compilation fixes
if [ $(gcc-major-version) -ge 4 ]; then
epatch ${FILESDIR}/${P}-gcc41-hash.patch || die
epatch ${FILESDIR}/${P}-gcc41.patch || die
fi
# Replace autochecking acdesktop.m4 with a gentoo-specific one
cp ${FILESDIR}/gentoo-acdesktop.m4 ${S}/gui/desktop/acdesktop.m4
aclocal -I config -I gui/desktop || die "aclocal failed"
autoconf || die "autoconf failed"
libtoolize --copy --force
}
src_compile() {
# assembler problems and hence non-building with pentium4
# <obz@gentoo.org>
replace-flags -march=pentium4 -march=pentium3
if use kde ; then
export kde_mimelnk=/usr/share/mimelnk
fi
# When enabling qt it must be compiled with threads. See bug #89544.
if use qt3 ; then
QTCONF=" --with-qt --enable-threads "
elif use threads ; then
QTCONF=" --enable-threads "
else
QTCONF=" --disable-threads "
fi
econf --enable-desktopfiles \
$(use_enable xml xmltools) \
$(use_with jpeg) \
$(use_with tiff) \
$(use_enable nls i18n) \
$(use_enable debug) \
${QTCONF} \
|| die "econf failed"
if ! use nsplugin; then
sed -e 's:nsdjvu::' -i ${S}/gui/Makefile
fi
emake -j1 || die "emake failed"
}
src_install() {
make DESTDIR=${D} plugindir=/usr/$(get_libdir)/${PLUGINS_DIR} install
}
|