diff options
author | Marinus Schraal <foser@gentoo.org> | 2004-11-30 23:16:58 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2004-11-30 23:16:58 +0000 |
commit | 2b702c1858a49233df199e990053e93b6d88d89d (patch) | |
tree | 3aebf18dbbdb2f4e14c94e56c88e23cc289f6050 /app-text/wv | |
parent | binutils:mulitslot (diff) | |
download | gentoo-2-2b702c1858a49233df199e990053e93b6d88d89d.tar.gz gentoo-2-2b702c1858a49233df199e990053e93b6d88d89d.tar.bz2 gentoo-2-2b702c1858a49233df199e990053e93b6d88d89d.zip |
new release
Diffstat (limited to 'app-text/wv')
-rw-r--r-- | app-text/wv/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/wv/Manifest | 4 | ||||
-rw-r--r-- | app-text/wv/files/digest-wv-1.0.3 | 1 | ||||
-rw-r--r-- | app-text/wv/wv-1.0.3.ebuild | 47 |
4 files changed, 58 insertions, 2 deletions
diff --git a/app-text/wv/ChangeLog b/app-text/wv/ChangeLog index 35e6d3c962df..ea1e8a71551c 100644 --- a/app-text/wv/ChangeLog +++ b/app-text/wv/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/wv # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.22 2004/08/10 03:05:09 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.23 2004/11/30 23:16:58 foser Exp $ + +*wv-1.0.3 (01 Dec 2004) + + 01 Dec 2004; foser <foser@gentoo.org> wv-1.0.3.ebuild : + Welcome to december, full of lights and emptyness + New wv, fixed deps a bit 09 Aug 2004; Tom Gall <tgall@gentoo.org> wv-1.0.0-r1.ebuild: stable on ppc64, bug #57192 diff --git a/app-text/wv/Manifest b/app-text/wv/Manifest index 42c90b39bc70..f08600473d6f 100644 --- a/app-text/wv/Manifest +++ b/app-text/wv/Manifest @@ -1,5 +1,7 @@ +MD5 f2373eebbe46846210972dc168433363 wv-1.0.0-r1.ebuild 1047 +MD5 f2373eebbe46846210972dc168433363 wv-1.0.3.ebuild 1047 MD5 5525f2e80d8ab6ec40fa7d4538b84a43 ChangeLog 2392 MD5 525c7299058f839eff524bc25c39267e metadata.xml 345 -MD5 f2373eebbe46846210972dc168433363 wv-1.0.0-r1.ebuild 1047 MD5 97079efa2a5256ad07ada6260b7ec298 files/digest-wv-1.0.0-r1 60 MD5 29b026d4ff443552a80797b397d37ec6 files/wv-1.0.0-fix_overflow.patch 1693 +MD5 79e495e6bfc4b192499c4d28f631ea01 files/digest-wv-1.0.3 60 diff --git a/app-text/wv/files/digest-wv-1.0.3 b/app-text/wv/files/digest-wv-1.0.3 new file mode 100644 index 000000000000..a4593f850e7f --- /dev/null +++ b/app-text/wv/files/digest-wv-1.0.3 @@ -0,0 +1 @@ +MD5 71e42aa9af1e03cc8c608bbbdcb43af8 wv-1.0.3.tar.gz 857412 diff --git a/app-text/wv/wv-1.0.3.ebuild b/app-text/wv/wv-1.0.3.ebuild new file mode 100644 index 000000000000..82bb0db792a5 --- /dev/null +++ b/app-text/wv/wv-1.0.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.0.3.ebuild,v 1.1 2004/11/30 23:16:58 foser Exp $ + +inherit eutils + +DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable" +SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz" +HOMEPAGE="http://wvware.sourceforge.net" + +IUSE="xml2 wmf" +KEYWORDS="~x86 ~ppc ~sparc ~hppa ~alpha ~ia64 ~amd64 ~ppc64" +SLOT="0" +LICENSE="GPL-2" + +RDEPEND="sys-libs/zlib + dev-libs/glib + media-libs/libpng + wmf? ( >=media-libs/libwmf-0.2.2 ) + xml2? ( dev-libs/libxml2 )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + + econf \ + `use_with xml2 libxml2` \ + `use_with wmf libwmf` \ + --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 + +} |