blob: 5b4a53a4ca5f3f46d91747a942eb8202d8acaa1a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-text/antiword/antiword-0.32.ebuild,v 1.5 2002/08/06 14:48:47 gerk Exp $
S=${WORKDIR}/${PN}.0.32
DESCRIPTION="Antiword is a free MS Word reader for Linux and RISC OS"
SRC_URI="http://www.winfield.demon.nl/linux/${P}.tar.gz"
HOMEPAGE="http://www.winfield.demon.nl"
DEPEND="app-text/ghostscript
"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
src_unpack() {
unpack ${A}
cd ${S}
patch -p0 < ${FILESDIR}/gentoo-antiword.diff
rm Makefile
sed -e '/pedantic/d' -e 's/$(CFLAGS)/$(CFLAGS) -D$(DB)/' \
Makefile.Linux > Makefile
}
src_compile() {
emake || die
}
src_install () {
exeinto /usr/bin
doexe antiword
if [`use kde`]
then
kantiword
fi
cd Docs
doman antiword.1
dodoc COPYING ChangeLog FAQ History Netscape QandA ReadMe
cd ..
insinto /usr/share/${PN}
doins Resources/*
}
|