blob: 6ac4b2e2e8a4b78be86572a2b8a7c989d3acf230 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/antiword/antiword-0.32.ebuild,v 1.12 2003/03/16 18:38:47 seemant Exp $
inherit eutils
IUSE="kde"
S=${WORKDIR}/${PN}.${PV}
DESCRIPTION="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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc"
DEPEND=">=sys-apps/sed-4.0.5
app-text/ghostscript"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/gentoo-antiword.diff
sed -i \
-e '/pedantic/d' \
-e 's/$(CFLAGS)/$(CFLAGS) -D$(DB)/' \
Makefile.Linux
}
src_compile() {
emake || die
}
src_install() {
dobin antiword
use kde && dobin kantiword
insinto /usr/share/${PN}
doins Resources/*
cd Docs
doman antiword.1
dodoc COPYING ChangeLog FAQ History Netscape QandA ReadMe
}
|