blob: 04f2a18106f3846f1ea072673a637487259cd63f (
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-office/abiword-plugins/abiword-plugins-2.4.1-r2.ebuild,v 1.4 2006/01/10 01:38:02 obz Exp $
inherit eutils
DESCRIPTION="Set of plugins for abiword"
HOMEPAGE="http://www.abisource.com/"
SRC_URI="http://www.abisource.com/downloads/abiword/${PV}/abiword-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="bzip2 debug gnome grammar jpeg libgda math pdf readline svg thesaurus wmf wordperfect"
S=${WORKDIR}/abiword-${PV}/${PN}
# libgsf dependency used by some document format importers
RDEPEND="=app-office/abiword-${PV}
virtual/xft
>=media-libs/fontconfig-1
>=dev-libs/fribidi-0.10.4
>=dev-libs/glib-2
>=x11-libs/gtk+-2
>=gnome-base/libglade-2
>=gnome-extra/libgsf-1.12.1
bzip2? ( app-arch/bzip2 )
gnome? ( >=x11-libs/goffice-0.0.4 )
grammar? ( >=dev-libs/link-grammar-4.1.1 )
jpeg? ( >=media-libs/jpeg-6b-r2 )
libgda? (
>=gnome-extra/libgda-1.2
>=gnome-extra/libgnomedb-1.2 )
math? ( >=x11-libs/gtkmathview-0.7.5 )
pdf? ( >=app-text/poppler-0.1.2 )
readline? ( sys-libs/readline )
thesaurus? ( >=app-text/aiksaurus-1.2 )
wordperfect? ( >=app-text/libwpd-0.8 )
wmf? ( >=media-libs/libwmf-0.2.8 )
svg? ( >=gnome-base/librsvg-2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/abiword-plugins-2.4.2-gcc41.patch
# Patch for newer goffice, see bug #118290
has_version ">=x11-libs/goffice-0.1.2" && \
epatch ${FILESDIR}/${P}-goffice.patch
}
src_compile() {
local myconf="--enable-all \
--with-abiword=${WORKDIR}/abiword-${PV}/abi \
$(use_enable debug) \
$(use_with bzip2 bz2abw) \
$(use_with gnome abigochart) \
$(use_with grammar abigrammar) \
$(use_with jpeg) \
$(use_with libgda gda) \
$(use_with math abimathview) \
$(use_with pdf) \
$(use_with readline abicommand)
$(use_with svg librsvg) \
$(use_with thesaurus aiksaurus) \
$(use_with wmf) \
$(use_with wordperfect) \
--without-psion"
econf $myconf || die "./configure failed"
emake || die "Compilation failed"
}
src_install() {
make DESTDIR="${D}" install || die "Installation failed"
dodoc AUTHORS ChangeLog README
}
|