blob: ca7481f6c44fa287906ced1d3b8b7804159facaa (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-0.7.6.ebuild,v 1.3 2003/08/30 12:43:27 weeve Exp $
DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable"
SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz"
HOMEPAGE="http://www.wvware.com"
KEYWORDS="~x86 ~ppc ~sparc"
SLOT="0"
LICENSE="GPL-2"
# FIXME : probably should add xml dep
DEPEND="sys-libs/zlib
media-libs/libpng
>=media-libs/libwmf-0.2.2"
src_compile() {
econf --with-docdir=/usr/share/doc/${PF} || die
make || die
}
src_install () {
einstall
insinto /usr/include
doins wvinternal.h
rm -f ${D}/usr/share/man/man1/wvConvert.1
dosym /usr/share/man/man1/wvWare.1 /usr/share/man/man1/wvConvert.1
}
|