blob: 5baa22d5bc4a5df616beb9895d7176b0437fc3e3 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/abiword/abiword-1.0.4_pre1-r2.ebuild,v 1.3 2003/02/13 09:15:02 vapier Exp $
IUSE="perl nls gnome build spell jpeg xml2"
S=${WORKDIR}/${P}/abi
DESCRIPTION="Text processor"
SRC_URI="http://download.sourceforge.net/abiword/abiword-${PV}.tar.gz"
HOMEPAGE="http://www.abisource.com"
KEYWORDS="~x86 ~ppc ~sparc"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/x11
media-libs/libpng
>=dev-libs/libunicode-0.4-r1
=x11-libs/gtk+-1.2*
jpeg? ( >=media-libs/jpeg-6b-r2 )
xml2? ( >=dev-libs/libxml2-2.4.10 )
spell? ( >=app-text/aspell-0.50.2-r1 )
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1
>=gnome-extra/gal-0.13-r1
>=gnome-base/bonobo-1.0.9-r1 )
perl? ( >=sys-devel/perl-5.6 )
!app-shells/bash-completion"
src_compile() {
local myconf
use gnome \
&& myconf="${myconf} --with-gnome --enable-gnome"; \
export ABI_OPT_BONOBO=1
use perl \
&& myconf="${myconf} --enable-scripting" \
|| myconf="${myconf} --disable-scripting"
use spell \
&& myconf="${myconf} --with-pspell --disable-static"
use xml2 \
&& myconf="${myconf} --with-libxml2"
use jpeg \
&& myconf="${myconf} --with-libjpeg"
use nls \
&& myconf="${myconf} --enable-bidi"
./autogen.sh
einfo "Ignore above ERROR as it does not cause build to fail."
CFLAGS="${CFLAGS} `gdk-pixbuf-config --cflags`"
econf ${myconf}
make || die
}
src_install() {
dodir /usr/{bin,lib}
einstall PERLDEST=${D}
dosed "s:${D}::g" /usr/bin/AbiWord
rm -f ${D}/usr/bin/abiword
dosym /usr/bin/AbiWord /usr/bin/abiword
dodoc BUILD COPYING *.txt, *.TXT
# Install icon and .desktop for menu entry
use gnome && ( \
insinto /usr/share/pixmaps
newins ${WORKDIR}/${P}/abidistfiles/icons/abiword_48.png AbiWord.png
insinto /usr/share/gnome/apps/Applications
doins ${FILESDIR}/AbiWord.desktop
)
}
|