diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-11-27 11:09:33 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-11-27 11:09:33 +0000 |
commit | 7c97b3014cc161c18f2da539be975e76512b47a3 (patch) | |
tree | 560a38e02a1400f462f5b0d2c3103183de43ac5f /app-text/wv | |
parent | Spelling mistake in ChangeLog (diff) | |
download | gentoo-2-7c97b3014cc161c18f2da539be975e76512b47a3.tar.gz gentoo-2-7c97b3014cc161c18f2da539be975e76512b47a3.tar.bz2 gentoo-2-7c97b3014cc161c18f2da539be975e76512b47a3.zip |
fix bug #11096
Diffstat (limited to 'app-text/wv')
-rw-r--r-- | app-text/wv/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/wv/files/digest-wv-0.7.4 | 1 | ||||
-rw-r--r-- | app-text/wv/wv-0.7.4.ebuild | 33 |
3 files changed, 42 insertions, 1 deletions
diff --git a/app-text/wv/ChangeLog b/app-text/wv/ChangeLog index 4914e9ec6cfd..1b09542dd171 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.3 2002/08/02 17:42:50 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.4 2002/11/27 11:07:22 bcowan Exp $ + +*wv-0.7.4 (27 Nov 2002) + + 27 Nov 2002; Brad Cowan <bcowan@gentoo.org> wv-0.7.4.ebuild, + files/digest-wv-0.7.4: + + Version bump. *wv-0.7.1 (8 Feb 2002) diff --git a/app-text/wv/files/digest-wv-0.7.4 b/app-text/wv/files/digest-wv-0.7.4 new file mode 100644 index 000000000000..e562ef371131 --- /dev/null +++ b/app-text/wv/files/digest-wv-0.7.4 @@ -0,0 +1 @@ +MD5 58ef2f92edcca90b8fda72ad5f6c69c5 wv-0.7.4.tar.gz 1199621 diff --git a/app-text/wv/wv-0.7.4.ebuild b/app-text/wv/wv-0.7.4.ebuild new file mode 100644 index 000000000000..65961ecb9bfa --- /dev/null +++ b/app-text/wv/wv-0.7.4.ebuild @@ -0,0 +1,33 @@ +# 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.ebuild,v 1.1 2002/11/27 11:07:22 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 +} |