diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-01-27 01:55:47 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-01-27 01:55:47 +0000 |
commit | 8474114e2d4eacab6c39347b1925f89f87070111 (patch) | |
tree | 749ba37de75c006e3cc45f122626c50f5fae4656 /app-text | |
parent | whoops, forgot two of them (diff) | |
download | gentoo-2-8474114e2d4eacab6c39347b1925f89f87070111.tar.gz gentoo-2-8474114e2d4eacab6c39347b1925f89f87070111.tar.bz2 gentoo-2-8474114e2d4eacab6c39347b1925f89f87070111.zip |
added header file and fixed a broken symlink
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/wv/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/wv/files/digest-wv-0.7.4-r1 | 1 | ||||
-rw-r--r-- | app-text/wv/wv-0.7.4-r1.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/app-text/wv/ChangeLog b/app-text/wv/ChangeLog index b7852781fc74..b4196dec315e 100644 --- a/app-text/wv/ChangeLog +++ b/app-text/wv/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/wv # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.6 2002/12/13 10:56:21 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.7 2003/01/27 01:55:47 bcowan Exp $ + +*wv-0.7.4-r1 (25 Jan 2003) + + 26 Jan 2003; Brad Cowan <bcowan@gentoo.org> wv-0.7.4-r1.ebuild, + files/digest-wv-0.7.4-r1: + + Added header file and fixed symlink. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/app-text/wv/files/digest-wv-0.7.4-r1 b/app-text/wv/files/digest-wv-0.7.4-r1 new file mode 100644 index 000000000000..e562ef371131 --- /dev/null +++ b/app-text/wv/files/digest-wv-0.7.4-r1 @@ -0,0 +1 @@ +MD5 58ef2f92edcca90b8fda72ad5f6c69c5 wv-0.7.4.tar.gz 1199621 diff --git a/app-text/wv/wv-0.7.4-r1.ebuild b/app-text/wv/wv-0.7.4-r1.ebuild new file mode 100644 index 000000000000..cebe9bce2a6b --- /dev/null +++ b/app-text/wv/wv-0.7.4-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2002 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.4-r1.ebuild,v 1.1 2003/01/27 01:55:47 bcowan Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="tool for convertion of MSWord doc and rtf files to something readable" +SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz" +HOMEPAGE="http://www.wvware.com" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND=">=media-libs/libwmf-0.2.2 + >=media-libs/freetype-2.0.1 + sys-libs/zlib + media-libs/libpng" + +RDEPEND="media-gfx/imagemagick" + +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 +} |