blob: bcd482708904ffcb217a5eb08f597f0353183cd7 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/app-text/antiword/antiword-0.31.ebuild,v 1.1 2001/06/22 20:08:09 g2boojum Exp $
#P=
A=${P}.tar.gz
S=${WORKDIR}/${PN}.0.31
DESCRIPTION="Antiword is a free MS Word reader for Linux and RISC OS"
SRC_URI="http://www.winfield.demon.nl/linux/${A}"
HOMEPAGE="http://www.winfield.demon.nl"
DEPEND="app-text/ghostscript"
src_compile() {
rm Makefile
sed -e '/pedantic/d' -e 's/$(CFLAGS)/$(CFLAGS) -D$(DB)/' Makefile.Linux > Makefile
try make
}
src_install () {
exeinto /usr/bin
doexe antiword kantiword
cd Docs
doman antiword.1
dodoc COPYING ChangeLog FAQ History Netscape QandA ReadMe
cd ..
insinto /usr/share/${PN}
doins Resources/*
}
|