blob: 91255b83735959017ab752107cb44a7f26c1ac66 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/antiword/antiword-0.36.1.ebuild,v 1.3 2005/03/11 13:25:34 seemant Exp $
IUSE="kde"
DESCRIPTION="free MS Word reader"
SRC_URI="http://www.winfield.demon.nl/linux/${P}.tar.gz"
HOMEPAGE="http://www.winfield.demon.nl"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ppc sparc alpha ~hppa ppc64"
DEPEND="virtual/ghostscript"
src_compile() {
emake || die
}
src_install() {
dobin antiword
use kde && dobin kantiword
insinto /usr/share/${PN}
doins Resources/*
insinto /usr/share/${PN}/examples
doins Docs/testdoc.doc Docs/antiword.php
cd Docs
doman antiword.1
dodoc COPYING ChangeLog Exmh Emacs FAQ History Netscape \
QandA ReadMe Mozilla Mutt
}
|